- 15 Dec, 2011 21 commits
-
-
apatrick@chromium.org authored
This will fix vista boxes with legacy XP drivers and make ANGLE work if D3D9Ex is disabled. Review URL: http://codereview.chromium.org/8913015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114551 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
BUG=107222 TEST=see bug Review URL: http://codereview.chromium.org/8918022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114550 0039d316-1c4b-4281-b951-d872f2087c98
-
asargent@chromium.org authored
Eventually it would be great to have something more user friendly like chrome:net-internals, but this is at least a start. BUG=30812 TEST=Run chrome with --vmodule=extension_updater=2, then try doing an extension update check (eg from chrome://extensions page, turn on development mode and then hit the update now button). You should see some debugging output on the console. Review URL: http://codereview.chromium.org/8929019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114549 0039d316-1c4b-4281-b951-d872f2087c98
-
saintlou@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/8915016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114548 0039d316-1c4b-4281-b951-d872f2087c98
-
sehr@google.com authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/8949003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114547 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114546 0039d316-1c4b-4281-b951-d872f2087c98
-
miket@chromium.org authored
This is a checkpoint commit. It does the following: - if Write() blocks, calls onEvent() when the underlying socket finishes its work. - Demonstrates a working framework for sending events back to JS. It does NOT do any of the following: - Prove that the above statements are true. In order to cause a UDP socket to block, we pretty much have to mock it, and I determined that I'd have to refactor my Socket class to let me put in a ClientSocketFactory for testing, which will then let me work DelayedSocketData in net/socket/socket_test_util.h into the mix and simulate Write blockage. After discussion with Antony, we agreed to break up this work into this CL and then a refactor/mock CL, which I'm working on now. BUG=106802 TEST=none (see above). Review URL: http://codereview.chromium.org/8896013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114544 0039d316-1c4b-4281-b951-d872f2087c98
-
mallinath@google.com authored
- Add IPv6 support to talk_base::SocketAddress - Refactored PeerConnectionFactory interface - Bug fixes BUG=none TEST=trybots Review URL: http://codereview.chromium.org/8914025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114543 0039d316-1c4b-4281-b951-d872f2087c98
-
mcgrathr@chromium.org authored
The nacl_helper program uses content::MakeSharedMemorySegmentViaIPC but none of the other proxy functions in the same source file. Some of those functions refer to symbols that bring in a great deal of other code, e.g. most of v8. We don't want all that code linked into nacl_helper--it bloats the binary by a factor of ten or so. Moving the function out to its own file prevents the other dependencies coming in unnecessarily. BUG= http://code.google.com/p/chromium/issues/detail?id=106986 TEST= still builds and nacl_helper binary is much smaller R=jam@chromium.org,bradchen@google.com Review URL: http://codereview.chromium.org/8893009 TBR=mcgrathr@chromium.org Review URL: http://codereview.chromium.org/8914026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114542 0039d316-1c4b-4281-b951-d872f2087c98
-
asvitkine@chromium.org authored
Avoid creating a temporary |gfx::Font| just to get its name and size to pass it to Skia. Note: There's room for further optimizations here, such as caching, which I plan to look at in a future CL. BUG=107394 TEST=Run aura and check that omnibox still looks fine. Run about:tracing and check that time used by this code is significantly decreased. Review URL: http://codereview.chromium.org/8910004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114541 0039d316-1c4b-4281-b951-d872f2087c98
-
stevenjb@google.com authored
Change-Id: I43866084657d7d9c9ebcdd466684ac6f3e993f1e BUG=chromium-os:23912 TEST=Log in, lock the screen, and unlock it. Ensure that the network menu ends with 'Network settings...' + IP, not 'More...' Review URL: http://codereview.chromium.org/8913017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114540 0039d316-1c4b-4281-b951-d872f2087c98
-
mcgrathr@chromium.org authored
The nacl_helper program uses content::MakeSharedMemorySegmentViaIPC but none of the other proxy functions in the same source file. Some of those functions refer to symbols that bring in a great deal of other code, e.g. most of v8. We don't want all that code linked into nacl_helper--it bloats the binary by a factor of ten or so. Moving the function out to its own file prevents the other dependencies coming in unnecessarily. BUG= http://code.google.com/p/chromium/issues/detail?id=106986 TEST= still builds and nacl_helper binary is much smaller R=jam@chromium.org,bradchen@google.com Review URL: http://codereview.chromium.org/8893009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114539 0039d316-1c4b-4281-b951-d872f2087c98
-
msw@chromium.org authored
Showing the avatar menu crashes after crrev.com/114330. SizeToContents was called before BubbleFrameView init. This workaround checks GetBubbleFrameView before calling SizeToContents. Also, run OnAvatarMenuModelChanged on Init, not ctor. BUG=106989,107574 TEST=No crash and doesn't regress crbug.com/106989. Review URL: http://codereview.chromium.org/8909013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114538 0039d316-1c4b-4281-b951-d872f2087c98
-
dtseng@chromium.org authored
Upcoming test infrastructure requires access to this meember. TEST=try bots. BUG=none. Review URL: http://codereview.chromium.org/8917020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114537 0039d316-1c4b-4281-b951-d872f2087c98
-
siggi@chromium.org authored
R=maruel@chromium.org BUG= TEST=Verified that this produces verbose debug spew in VS2008 official builds. Review URL: http://codereview.chromium.org/8910022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114536 0039d316-1c4b-4281-b951-d872f2087c98
-
lambroslambrou@chromium.org authored
BUG=107470 TEST=Check output log, and compare CPU usage with the non-XDamage case. Review URL: http://codereview.chromium.org/8937019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114535 0039d316-1c4b-4281-b951-d872f2087c98
-
brettw@chromium.org authored
This adds support for IDL in the private directory. Some of the interfaces there don't actually work, they were a work in progress and this breaks everything, so I moved the broken files to a new subdirectory. Everything left in the api/private directory can be autogenerated now. BUG= TEST= Review URL: http://codereview.chromium.org/8930023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114534 0039d316-1c4b-4281-b951-d872f2087c98
-
mkwst@chromium.org authored
BUG=107548 TEST= Review URL: http://codereview.chromium.org/8942001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114533 0039d316-1c4b-4281-b951-d872f2087c98
-
saintlou@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/8907048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114532 0039d316-1c4b-4281-b951-d872f2087c98
-
smus@chromium.org authored
BUG=98591 TEST= Review URL: http://codereview.chromium.org/8916013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114531 0039d316-1c4b-4281-b951-d872f2087c98
-
siggi@chromium.org authored
R=mmoss@chromium.org Review URL: http://codereview.chromium.org/8909011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114530 0039d316-1c4b-4281-b951-d872f2087c98
-
- 14 Dec, 2011 19 commits
-
-
sail@chromium.org authored
http://build.chromium.org/p/chromium.chromiumos/builders/Linux%20ChromeOS/builds/2495/steps/unit_tests/logs/stdio Show parse errors in the UI when loading ONC files. BUG=chromium-os:23757 TEST=manual Review URL: http://codereview.chromium.org/8883046 TBR=chocobo@chromium.org Review URL: http://codereview.chromium.org/8947002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114528 0039d316-1c4b-4281-b951-d872f2087c98
-
jamescook@chromium.org authored
This is the first of several CLs to add a "laptop mode" to Aura that works like the traditional ChromeOS browser view. In particular: * Keep the browser maximized. * Hide window caption buttons. * Suppress the launcher and related shelf items. * Suppress background image. * Add the switch to about:flags. These things don't work yet: * Status area is wedged in upper-left corner. * Popup browser windows are maximized and they shouldn't be. BUG=106898 TEST=manual, run ChromeOS Aura build and turn the flag on and off Review URL: http://codereview.chromium.org/8895003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114527 0039d316-1c4b-4281-b951-d872f2087c98
-
saintlou@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/8911011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114526 0039d316-1c4b-4281-b951-d872f2087c98
-
http://codereview.chromium.org/8890073/mattm@chromium.org authored
BUG=107047 TEST=none Review URL: http://codereview.chromium.org/8890074 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114525 0039d316-1c4b-4281-b951-d872f2087c98
-
sail@chromium.org authored
BUG=107047 TEST=crypto_unittests Review URL: http://codereview.chromium.org/8894023 TBR=mattm@chromium.org Review URL: http://codereview.chromium.org/8913018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114524 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114522 0039d316-1c4b-4281-b951-d872f2087c98
-
kbr@chromium.org authored
There was a problem on one of the canaries yesterday that prevented a roll. On current TOT WebKit there have been some build problems, but this revision looks OK on the canaries. BUG=none TEST=canaries TBR=morrita Review URL: http://codereview.chromium.org/8930025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114521 0039d316-1c4b-4281-b951-d872f2087c98
-
tommi@chromium.org authored
The tests should all succeed but on bots where audio hardware is missing, we should get a printout that no devices were detected. Notably the mac bots do have the necessary equipment which is how I ran into the bug. TEST=This runs more tests in media_unittests on the bots. Review URL: http://codereview.chromium.org/8941001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114520 0039d316-1c4b-4281-b951-d872f2087c98
-
dpranke@chromium.org authored
of the forwarding headers for webkit to be reported as missing. R=tony@chromium.org BUG=107444 TEST="missing file" warnings gone from build.webkit.org win bots Review URL: http://codereview.chromium.org/8933019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114519 0039d316-1c4b-4281-b951-d872f2087c98
-
saintlou@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/8909007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114518 0039d316-1c4b-4281-b951-d872f2087c98
-
maruel@chromium.org authored
R=bradnelson@chromium.org BUG= TEST= Review URL: http://codereview.chromium.org/8945001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114517 0039d316-1c4b-4281-b951-d872f2087c98
-
gman@chromium.org authored
TEST=none BUG=none Review URL: http://codereview.chromium.org/8936011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114516 0039d316-1c4b-4281-b951-d872f2087c98
-
chocobo@chromium.org authored
BUG=chromium-os:23757 TEST=manual Review URL: http://codereview.chromium.org/8883046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114515 0039d316-1c4b-4281-b951-d872f2087c98
-
stevenjb@google.com authored
Change-Id: I78ca835371a0cf70e3dcb7630a91838ca40e9005 BUG=107596 TEST=See issue Review URL: http://codereview.chromium.org/8914017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114513 0039d316-1c4b-4281-b951-d872f2087c98
-
bryner@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/8931018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114512 0039d316-1c4b-4281-b951-d872f2087c98
-
rtenneti@google.com authored
linux-release-lowmem/dom_perf: http://build.chromium.org/f/chromium/perf/linux-release-lowmem/dom_perf/report.html?history=250&rev=114487 TBR=cmp BUG=107486 Review URL: http://codereview.chromium.org/8909016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114511 0039d316-1c4b-4281-b951-d872f2087c98
-
dennisjeffrey@chromium.org authored
Previously, the pyauto remote inspector module only allowed a test to take a v8 heap snapshot, as follows: import perf_snapshot snapshotter = perf_snapshot.PerformanceSnapshotter() snapshot = snapshotter.HeapSnapshot() With this change, the same object now provides the GarbageCollect() function, which forces a garbage collection: import perf_snapshot snapshotter = perf_snapshot.PerformanceSnapshotter() snapshot = snapshotter.GarbageCollect() Refactoring of perf_snapshot.py still needs to be done to make it more general (useful for various kinds of interaction with the remote inspector). This CL includes a portion of this refactoring: I separated the _PerformanceSnapshotterThread class into 2 classes: a base class called _RemoteInspectorBaseThread, and a subclass called _PerformanceSnapshotterThread. There is a new subclass called _GarbageCollectThread to implement the garbage collection functionality. In a future CL, I intend to do some additional refactoring of comments and organization of the code, and also change the name of the file itself. BUG=chromium-os:23962 TEST=None Review URL: http://codereview.chromium.org/8885025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114510 0039d316-1c4b-4281-b951-d872f2087c98
-
stevenjb@chromium.org authored
Change-Id: I02b3329104f9c54580143595abfebff5079eb84a BUG=107028,107242 TEST=See issue. Make sure status buttons are correctly enabled from the login screen and once logged in, and that clicking on them during login does not crash or cause any bad behavior. Also check with the screen locker. Review URL: http://codereview.chromium.org/8907008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114509 0039d316-1c4b-4281-b951-d872f2087c98
-
rtenneti@google.com authored
/mac-release/sizes: http://build.chromium.org/f/chromium/perf/mac-release/sizes/report.html?history=50&header=Chromium.app&graph=Chromium.app&rev=114493 http://build.chromium.org/f/chromium/perf/mac-release/sizes/report.html?history=50&header=Chromium.app&graph=chrome-si&rev=114493 TBR=cmp BUG=107594 Review URL: http://codereview.chromium.org/8916017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114508 0039d316-1c4b-4281-b951-d872f2087c98
-