- 27 Jul, 2012 40 commits
-
-
cbentzel@chromium.org authored
BUG=139311 Review URL: https://chromiumcodereview.appspot.com/10831048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148793 0039d316-1c4b-4281-b951-d872f2087c98
-
zea@chromium.org authored
We were only ever performing a meaningful cleanup on reconfigurations or restart, so we make that explicit by purging from within the SyncManager's loading and configuration methods. BUG=131433, 90868 TEST=manual Review URL: https://chromiumcodereview.appspot.com/10541079 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148792 0039d316-1c4b-4281-b951-d872f2087c98
-
rlp@chromium.org authored
BUG=112525 TEST=unittests, manual Review URL: https://chromiumcodereview.appspot.com/10827060 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148791 0039d316-1c4b-4281-b951-d872f2087c98
-
yfriedman@chromium.org authored
Now requires you to specifically change the GYP_GENERATORS to specify Ninja. The original change broke because gyp ran for both make and ninja and the webkit bot determines whether to use ninja by the presence of build.ninja (thanks to Peter for figuring this out) BUG=137569,136693 Review URL: https://chromiumcodereview.appspot.com/10827073 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148790 0039d316-1c4b-4281-b951-d872f2087c98
-
shess@chromium.org authored
Also expanded scope of ScopedAllowIO in SQLiteServerBoundCertStore::Backend::Load() to cover SQLite functions. And added ScopedAllowIO to PasswordStoreFactory::BuildServiceInstanceFor() -- it calls LoginDatabase::Init() which should be executed on DB thread. This is a reland of https://src.chromium.org/viewvc/chrome?view=rev&revision=147309 which was reverted because of missing ScopedAllowIO in PasswordStoreFactory. Patch from Pavel Ivanov <paivanof@gmail.com> BUG=75232, 52909, 137961, 138903 TEST=no test fails with message "Function marked as IO-only was called from a thread that disallows IO!" Review URL: https://chromiumcodereview.appspot.com/10824008 Patch from Pavel Ivanov <paivanof@gmail.com>. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148788 0039d316-1c4b-4281-b951-d872f2087c98
-
simonjam@google.com authored
xp-release-dual-core/moz/total_byte_r/IO_r: xp-release-dual-core/moz/total_op_r/IO_op_r: TBR=cmp BUG=139382 Review URL: https://chromiumcodereview.appspot.com/10825061 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148787 0039d316-1c4b-4281-b951-d872f2087c98
-
simonjam@google.com authored
TBR=rtenneti BUG=138877 Review URL: https://chromiumcodereview.appspot.com/10826051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148786 0039d316-1c4b-4281-b951-d872f2087c98
-
krenaud@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148785 0039d316-1c4b-4281-b951-d872f2087c98
-
sergeyu@chromium.org authored
This is a speculative fix for the failure in crbug.com/139136. It's not clear why we get WSAEADDRNOTAVAIL from sendto(), but it should be safe to ignore that error. BUG=137140 Review URL: https://chromiumcodereview.appspot.com/10827064 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148784 0039d316-1c4b-4281-b951-d872f2087c98
-
thomasvl@chromium.org authored
Review URL: https://chromiumcodereview.appspot.com/10829059 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148783 0039d316-1c4b-4281-b951-d872f2087c98
-
yutak@chromium.org authored
Currently, MockRead and MockWrite are defined as the same type by using typedef. However, these types are different types and should not be used interchangably. This change gives MockRead and MockWrite distinct types by using templates so the compiler can cause an error when these types are used interchangably. Some misuses of MockRead and MockWrite were found, so these are fixed in this change, too. BUG=none R=mmenke@chromium.org,akalin@chromium.org Review URL: https://chromiumcodereview.appspot.com/10796085 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148782 0039d316-1c4b-4281-b951-d872f2087c98
-
simonmorris@chromium.org authored
Review URL: https://chromiumcodereview.appspot.com/10833022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148779 0039d316-1c4b-4281-b951-d872f2087c98
-
jennyz@google.com authored
Horizontal slider is implemented with image resources, and it changes UI based the on/off state. Vertical slider is kept in the old way, since I don't have the UI resources for drawing the vertical slider. I wonder if I should remove the vertical slider bar supporting code, or leave it as it which is what I choose to do currently. BUG=124097 TEST=Audio and brightness slider control should be in new UI, and audio slider bar should dim when muted. TBR=oshima@chromium.org Review URL: https://chromiumcodereview.appspot.com/10830027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148778 0039d316-1c4b-4281-b951-d872f2087c98
-
tommi@chromium.org authored
This CL does the following: * Move AudioDevice, AudioInputDevice out of content, into media/audio. * ...and a couple of dependent classes: AudioDeviceThread and ScopedLoopObserver. * ...and the unit test. * Renamed AudioDevice -> AudioOutputDevice * Moved the classes into the media namespace. * Updated the unit test code as necessary. Aside from the unit test*, there are minimal code changes. Only what was required to make things build and work as before - mostly just adding or removing "media::". * The unit test changes were to add expectations for AddDelegate/RemoveDelegate since previously a mock class was inheriting from AudioMessageFilter and not the IPC interface. Review URL: https://chromiumcodereview.appspot.com/10834033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148777 0039d316-1c4b-4281-b951-d872f2087c98
-
junov@chromium.org authored
deferred canvas rendering BUG=139174 TEST=none. Review URL: https://chromiumcodereview.appspot.com/10826034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148776 0039d316-1c4b-4281-b951-d872f2087c98
-
sreeram@chromium.org authored
The pattern may seem overly broad, but actually, it covers exactly the set of files that affect Chrome Instant. R=nirnimesh@chromium.org BUG=none TEST='depot_tools/watchlists.py chrome/common/instant_types.h' lists sreeram@chromium.org. Review URL: https://chromiumcodereview.appspot.com/10833054 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148775 0039d316-1c4b-4281-b951-d872f2087c98
-
satorux@chromium.org authored
As a good citizen, not only write a unit test for the new function, but also for the exsisting similar functions lacking unit tests. BUG=135328 TEST=out/Release/unit_tests --gtest_filter=GDataCacheTest.GetResourceIdsOf* Review URL: https://chromiumcodereview.appspot.com/10834052 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148774 0039d316-1c4b-4281-b951-d872f2087c98
-
cduvall@chromium.org authored
Clean up branch.js to use addEventListener. BUG=131095 Review URL: https://chromiumcodereview.appspot.com/10828027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148773 0039d316-1c4b-4281-b951-d872f2087c98
-
jennyz@google.com authored
BUG=138177 Review URL: https://chromiumcodereview.appspot.com/10829060 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148771 0039d316-1c4b-4281-b951-d872f2087c98
-
jaysoffian@gmail.com authored
These were added to DEPS by r147341 (Add native Windows tools for bison, gperf, perl to DEPS, 2012-07-18), but not to .gitignore. BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10825055 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148770 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148769 0039d316-1c4b-4281-b951-d872f2087c98
-
reed@google.com authored
Review URL: https://chromiumcodereview.appspot.com/10826009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148768 0039d316-1c4b-4281-b951-d872f2087c98
-
girard@chromium.org authored
Touches generate emulated mouse events. The menu controller was unintentionally ignoring these events. BUG=138356 TEST= Review URL: https://chromiumcodereview.appspot.com/10831011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148767 0039d316-1c4b-4281-b951-d872f2087c98
-
kxing@chromium.org authored
Review URL: https://chromiumcodereview.appspot.com/10818010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148766 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148765 0039d316-1c4b-4281-b951-d872f2087c98
-
mmenke@chromium.org authored
disabled for most browser tests. Also remove the option from about:flags. It can still be disabled via --captive-portal-detection=0 or by deselecting "use a web service to resolve navigation errors". BUG=87100 Review URL: https://chromiumcodereview.appspot.com/10795038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148764 0039d316-1c4b-4281-b951-d872f2087c98
-
joaodasilva@chromium.org authored
BUG=None Review URL: https://chromiumcodereview.appspot.com/10823055 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148763 0039d316-1c4b-4281-b951-d872f2087c98
-
mseaborn@chromium.org authored
This pulls in the following Native Client changes: r9263: (eaeltsin) Debug stub: make gdb tests out file names consistent r9264: (halyavin) Update gdb revision. r9265: (jvoung) Bump chrome revision to 148535 in NaCl. r9267: (jvoung) Properly guard the known-bug check introduced in 9254. Skip it if there r9268: (robertm) Remove LLVM tblgen binaries from the PNaCl toolchain r9269: (robertm) Do not export header files we decided should not be part of the untrusted toolchains. r9270: (mseaborn) ARM: Rename the "new_eip" field in NaClThreadContext to "new_prog_ctr" r9271: (jvoung) Revert "Bump chrome revision to 148535 in NaCl." r9272: (dschuff) Bitcode stability test with archived frontend and current backend r9274: (mseaborn) Implement a sigreturn-like NaClSwitchAllRegs() operation r9275: (dschuff) Remove archived pexe scons tests r9276: (dschuff) Change displayed CommandTest name for pnacl r9277: (pasko) validator_ragel: allow multiple errors in tests BUG=none TEST=nacl_integration Review URL: https://chromiumcodereview.appspot.com/10827070 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148762 0039d316-1c4b-4281-b951-d872f2087c98
-
gavinp@chromium.org authored
Very basic support for three simultanious prerenders, as a basis for continued updates on the API. R=dominich@chromium.org BUG=None Review URL: https://chromiumcodereview.appspot.com/10802024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148761 0039d316-1c4b-4281-b951-d872f2087c98
-
mathp@google.com authored
a user (with associated profile) had clicked "Cancel". New behavior is that we now remember for which email the bar was dismissed, and show it again in case the user signs in with a different email. If the user accepts the one-click sign-in at one point, the bar never shows again for this profile BUG=118280 TEST=Cancel the one-click sign-in bar, log-in with another Google account, see that it still shows up. Review URL: https://chromiumcodereview.appspot.com/10555005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148760 0039d316-1c4b-4281-b951-d872f2087c98
-
satorux@chromium.org authored
This section is used to show metadata of the file system as pre-formatted text. We could make it prettier, but pre-formatted text should be sufficient for developers. BUG=135328 TEST=the new section is shown in chrome:drive-internals properly Review URL: https://chromiumcodereview.appspot.com/10821051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148759 0039d316-1c4b-4281-b951-d872f2087c98
-
sadrul@chromium.org authored
BUG=138952 TEST=none Review URL: https://chromiumcodereview.appspot.com/10823046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148758 0039d316-1c4b-4281-b951-d872f2087c98
-
scshunt@chromium.org authored
BUG=none TEST=compiles Review URL: https://chromiumcodereview.appspot.com/10696158 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148757 0039d316-1c4b-4281-b951-d872f2087c98
-
shadi@chromium.org authored
chrome/test/data/media files that were copied in r148190 in preparation for r148349 BUG=125424 NOTRY=true TEST=none Review URL: https://chromiumcodereview.appspot.com/10825038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148756 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148755 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
BUG=133088 TBR=ben@chromium.org NOTRY=True Review URL: https://chromiumcodereview.appspot.com/10826043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148754 0039d316-1c4b-4281-b951-d872f2087c98
-
lliabraa@chromium.org authored
iossim is a command line tool used to run an iOS app in the iOS Simulator. BUG=None TEST=None Review URL: https://chromiumcodereview.appspot.com/10805004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148753 0039d316-1c4b-4281-b951-d872f2087c98
-
satorux@chromium.org authored
This section is used to show contents in the GCache directory. BUG=135328 TEST=the new section is shown in chrome:drive-internals properly Review URL: https://chromiumcodereview.appspot.com/10823039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148752 0039d316-1c4b-4281-b951-d872f2087c98
-
zhaoqin@google.com authored
R=mpcomplete@chromium.org,gbillock@chromium.org BUG=130432 TEST=CWSIntentsRegistryTest.LocalizeMatchingLocale:ExtensionL10nUtil.GetAllFallbackLocales:ExtensionL10nUtil.LoadMessageCatalogs* Review URL: https://chromiumcodereview.appspot.com/10790087 TBR=groby@chromium.org Review URL: https://chromiumcodereview.appspot.com/10821068 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148751 0039d316-1c4b-4281-b951-d872f2087c98
-
sadrul@chromium.org authored
Accumulating all the positions of the touch-events of a single touch-point during its entire lifetime is not very useful. So instead, stop accumulating the positions when the point leaves the manhattan square. BUG=139175 TEST=none TBR=sky@chromium.org Review URL: https://chromiumcodereview.appspot.com/10831043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148750 0039d316-1c4b-4281-b951-d872f2087c98
-