Log message: From: To:
Path:
Author:
Issue:
File name:
File type:
Activity by path
Activity by time
2008-04
Activity by year and month
Activity by author
authors by first/last commit
Core group
Developer turnover
Changes    Collaboration    Timeline    Rss    Widget         
Unmute 1 - 20 of 120502  Next ›
120502 05.02.2012 04:22:38, by aa@chromium.org
Add some more desperate logging attempting to understand crasher.

BUG=108724
TBR=yoz@chromium.org

Review URL: https://chromiumcodereview.appspot.com/9309089
120501 05.02.2012 04:08:03, by thakis@chromium.org
Rename 2x dpi images from large_foo.png to foo_2x.png

Done by this bash script:

for f in chrome/app/theme/large_*; do
d=$(dirname $f);
f=$(basename $f);
t=$(echo $f | sed 's/\(.*\)large_\(.*\)\(\..*\)/\1\2_2x\3/');
echo $t;
sed -i -e "s/$f/$t/" chrome/app/theme/theme_resources_large.grd;
git mv $d/$f $d/$t/
done

for f in ui/resources/large_*; do
d=$(dirname $f);
f=$(basename $f);
t=$(echo $f | sed 's/\(.*\)large_\(.*\)\(\..*\)/\1\2_2x\3/');
echo $t;
sed -i -e "s/$f/$t/" ui/resources/ui_resources_large.grd
git mv $d/$f $d/$t/
done

I will rename the grd files from _standard.grd and _large.grd to
_1x.grd and _2x.grd in a follow-up CL.

No intended functionality change.

BUG=111101
TEST=nothing breaks
TBR=ben

Review URL: https://chromiumcodereview.appspot.com/9309103
120500 05.02.2012 04:07:39, by brettw@chromium.org
Remove static initializer for TLS object. This moves the TLS to the
PluginGlobals. I did not do a general sultion so that anybody can add to the
globals TLS object because this may be the only place we need this.

Review URL: http://codereview.chromium.org/9296017
120499 05.02.2012 04:07:29, by brettw@chromium.org
Convert most users in thunk that used MayForceCallback to use the new Enter... format that does callback validation and forcing in its destructor.

This adds the same support for callback tracking for EnterFunction... as my previous patch did for EnterResource.

Review URL: http://codereview.chromium.org/9113044
120498 05.02.2012 00:07:07, by petermayo@chromium.org
Re-sort the list of closing steps.

And remove the misleading/not useful comment.
This makes it easier to compare with sub-trees like chromium.chromiumos.

BUG=None
TEST=Manual

Review URL: http://codereview.chromium.org/9317109
120497 04.02.2012 23:59:14, by jhawkins@chromium.org
Help: Implement the initial version of the cross-platform help/about page.

BUG=110506
TEST=none
R=csilv

Review URL: https://chromiumcodereview.appspot.com/9320056
120496 04.02.2012 23:38:06, by nsylvain@chromium.org
Fix the schedulers on master.chromium.fyi.

At a few places dependent bots were not triggered by the builders, but by
the svn poller, which was causing the extract build step to always be wrong.

TBR=maruel

Review URL: http://codereview.chromium.org/9323061
120495 04.02.2012 23:15:16, by petermayo@chromium.org
Remove the reliability test driver and the builder for it.

These have been broken for a few months and reporting only confusing results.
The bots have been turned down until replacement mechanics are in place.

BUG=None
TEST=Manual

Review URL: http://codereview.chromium.org/9234006
120494 04.02.2012 23:09:14, by cbentzel@chromium.org
"Save As" for content retrieved via POST works in most circumstances.

If the content is in the HTTP cache, this will work in the following cases:
- "Save Page As" from the wrench menu for non-HTML pages.
- Context-menu save image as, or save audio/video plugin as.
- ViewHostMsg_SaveURLAs IPC's.

This will work for back/forward navigations to an item which was POST'ed, as well as for tabs restored via the TabRestoreService.

It does not work for tabs restored via the SessionService, such as after Chrome crashes or for users who have the "Reopen the Pages that were Open Last" option set.

This CL currently depends on http://codereview.chromium.org/9317009/

BUG=55551
TEST=DownloadTest.SavePageNonHTMLViaPost


Review URL: http://codereview.chromium.org/9314037
120493 04.02.2012 23:09:03, by rdsmith@chromium.org
Change %d to %zu to handle size_t argument.

BUG=None


Review URL: http://codereview.chromium.org/9310107
120492 04.02.2012 22:31:11, by petermayo@chromium.org
Exclude tests that the main doesn't close on from closers.

browser_tests, ui_tests and interactive_ui_tests do not close on the
main tree.

BUG=chromium:112616
TEST=manual

Review URL: http://codereview.chromium.org/9316117
120491 04.02.2012 21:45:06, by jhawkins@chromium.org
Whitespace-only change to force a build.

BUG=
TEST=

Review URL: https://chromiumcodereview.appspot.com/9316118
120490 04.02.2012 19:12:16, by wez@chromium.org
Provide WillInitiatePaint() as well as DidInitiatePaint() and tweak semantics.

WillInitiatePaint() informs derived classes when the RenderWidget is about to perform a paint operation.

DidInitiatePaint() informs derived classes that the RenderWidget has finished the paint operation and sent it to the browser to display.

DidFlushPaint() informs derived classes when the paint operation has actually been displayed (either in response to UpdateRectAck, or OnSwapBuffersComplete()).

Pepper Graphics2D uses WillInitiatePaint and DidFlushPaint to trigger its Flush callback only for flushes occurring after the paint has actually been initiated.

Pepper Graphics3D uses DidInitiatePaint to know when the 3D pipeline is done with buffers from the previous paint operation, so that new content rendered to them won't be prematurely flushed to the screen.

Known issues with this CL:

* There is still scope for the Graphics2D to get confused when threaded compositing is in use, since DidFlushPaint for an older paint may be received after WillInitiatePaint for a more recent one, but that is a fix for another CL.

* Graphics3D will now be notified earlier in than it would have been in the software case, since it previously hooked DidFlushPaint.

BUG=111639
TEST=Run Native Client Examples "Pi generator", "Tumbler" and "Fullscreen Tumbler" with and without --force-composite-mode and verify they update correctly.


Review URL: http://codereview.chromium.org/9328016
120489 04.02.2012 19:05:16, by avi@chromium.org
Split TabContentsViewMac.

BUG=93804, 95573
TEST=no change

Review URL: https://chromiumcodereview.appspot.com/9307063
120488 04.02.2012 19:02:11, by maruel@chromium.org
Print commands are they are run in cleanup_slaves.py

Otherwise there's no information about the progress.

TBR=cmp@chromium.org
BUG=
TEST=


Review URL: http://codereview.chromium.org/9317108
120487 04.02.2012 17:57:54, by rdsmith@chromium.org
Remove DownloadManager* dependency on DownloadStatusUpdater
by making DownloadStatusUpdater an observer of DownloadManager.

BUG=107264


Review URL: http://codereview.chromium.org/9005027
120486 04.02.2012 17:53:48, by derat@chromium.org
chromeos: Move prefs from AudioMixerAlsa to AudioHandler.

No functional changes intended -- I'm just moving the
pref-handling code with the intentional goal of making
AudioHandler be usable even before AudioMixerAlsa has been
initialized.

BUG=112039
TEST=manual: checked that prefs are still written


Review URL: http://codereview.chromium.org/9328012
120485 04.02.2012 17:53:39, by phajdan.jr@chromium.org
Remove unconditional -msse3 -mssse3 CFLAGS from media.gyp.

This is confirmed to work by a user who experienced
the crash on illegal instruction because of this,
https://bugs.gentoo.org/show_bug.cgi?id=401537#c27

BUG=107532

Review URL: http://codereview.chromium.org/9309075
120484 04.02.2012 17:53:31, by xiyuan@chromium.org
chromeos: Fix the blank screen after browser crash.

On restarting from a crashed chrome, authenticator_ is NULL and causing
more crashes in FetchPolicyToken.

BUG=chromium-os:25865
TEST=Verify fix for chromium-os:25865.


Review URL: http://codereview.chromium.org/9309096
120483 04.02.2012 17:49:16, by isherman@chromium.org
Fix Autofill hang when interacting with large forms (i.e. forms containing many fields).

BUG=111319
TEST=browser_tests --gtest_filter=FormAutofillTest.*


Review URL: http://codereview.chromium.org/9225042
1 2 3 4 5 6 7 8 9 10 Next