- 12 Aug, 2013 11 commits
-
-
tfarina@chromium.org authored
This is the final patch in this series of merging the external googleurl repo into Chromium source code base. BUG=229660 R=brettw@chromium.org,joth@chromium.org,blundell@chromium.org,thakis@chromium.org,thestig@chromium.org TBR=brettw Review URL: https://chromiumcodereview.appspot.com/20349002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216922 0039d316-1c4b-4281-b951-d872f2087c98
-
shadi@chromium.org authored
Later CL commits local .sha1 files to link to uploaded media files. BUG=261318 Review URL: https://chromiumcodereview.appspot.com/19784011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216921 0039d316-1c4b-4281-b951-d872f2087c98
-
kjellander@chromium.org authored
BUG=webrtc:1882 TEST=From a recent WebRTC checkout: source build/android/envsetup.sh gclient runhooks ninja -C out/Debug build/android/run_test.py -s webrtc I also successful ran builder and tester with the buildbot configuration in https://codereview.chromium.org/17390019 using a locally patched checkout. Review URL: https://chromiumcodereview.appspot.com/17466002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216920 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216919 0039d316-1c4b-4281-b951-d872f2087c98
-
sbc@chromium.org authored
This is clone of https://codereview.chromium.org/22325019/ but with a minor tweak to shim_ppapi.c to handle the interface name that changed. This pulls in the following Native Client changes: r11964: (sbc) Add IRT interface for new syscalls (chdir/mkdir/rmdir/etc) r11965: (jfb) Add pthread_mutex_timedlock. r11966: (jfb) Test C++11 <thread> for PNaCl r11967: (jfb) Update PNaCl DEPS r11968: (khim) Update gcc revision in tools/REVISIONS r11969: (halyavin) Update toolchain revision. r11970: (halyavin) Enable base address hiding for PNaCl gdb tests. r11971: (jfb) Update TOOL_REVISIONS for PNaCl 11956->11967 r11972: (jvoung) Adjust perf_expectations for perf_improve (mostly transfersize, some runtime). r11973: (mseaborn) Thread suspension: Enable stress test for context switches on ARM r11974: (phosek) Consistent mprotect behavior across all platforms r11975: (jvoung) Remove old experimental pnacl_ld_experiments. r11976: (eliben) Prune more unused stuff when building the PNaCl toolchain r11977: (bradnelson) Pulling in different glibc revision. r11978: (stichnot) Allow testing non-default clang/llc optimization settings. r11979: (bradnelson) Allowing r/w PT_DYNAMIC in addition to r-only. r11980: (dschuff) Add a README file describing the directory layout of the PNaCl toolchain r11981: (sbc) Rename PNaCl toolchain folder within the SDK. r11982: (jvoung) Move PNaCl drivers from <base>/newlib/bin to <base>/bin. r11983: (jfb) PNaCl: Update LLVM revision in pnacl/DEPS r11984: (dschuff) Revert "Rename PNaCl toolchain folder within the SDK." r11985: (jfb) Update pnacl/DEPS for libstdc++ r11986: (jfb) Revert "Allow testing non-default clang/llc optimization settings." r11987: (jfb) Update TOOL_REVISIONS for PNaCl 11967->11986 r11988: (jfb) Add end-to-end tests that C++11 headers can be included. BUG=none TEST=browser_tests and nacl_integration NOTRY=true Review URL: https://chromiumcodereview.appspot.com/22630013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216918 0039d316-1c4b-4281-b951-d872f2087c98
-
akuegel@chromium.org authored
We didn't show the supervised user theme when a supervised user was created. This CL fixes this by running a callback when the supervised user profile is fully initialized. This also fixes the bug that the label string was not drawn on Windows. BUG=265387,269718 TEST=Created a supervised user, added a unit test. Review URL: https://chromiumcodereview.appspot.com/22677002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216917 0039d316-1c4b-4281-b951-d872f2087c98
-
flackr@chromium.org authored
Fixes valgrind failure and relands overview mode using alt-tab. BUG=263481, 264289 TEST=WindowSelectorTest.Basic,WindowSelectorTest.BasicCycle TEST=Enable --ash-enable-overview-mode and use alt-tab to cycle through MRU windows. Cycling is done in overview mode on active display. Review URL: https://chromiumcodereview.appspot.com/22667003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216916 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome://slowzork@chromium.org authored
BUG=269843 Review URL: https://chromiumcodereview.appspot.com/22654003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216915 0039d316-1c4b-4281-b951-d872f2087c98
-
ckocagil@chromium.org authored
Currently, consecutive clicks will produce this behavior: single-click, double-click, triple-click, single-click, double-click, ... This should match the Win behavior, which is: single-click, double-click, triple-click, double-click, triple-click, ... BUG=234344 Review URL: https://chromiumcodereview.appspot.com/22638016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216914 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-release@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216909 0039d316-1c4b-4281-b951-d872f2087c98
-
nhiroki@chromium.org authored
> Clean up compositor initialization/destruction. > > Moved from https://codereview.chromium.org/21052007/ > > Currently the ContextFactory is outliving the compositor thread in > tests, which is bad since the contexts in there can be bound to the > compositor thread. Then we end up reusing those contexts and bad > things happen. > > This enforces ordering for initializing and destroying the > compositor as follows: > > Initialize ContextFactory > ..Compositor::Initialize > ....Create Compositor instances > ....Delete Compositor instances > ..Compositor::Terminate > > The Compositor::Terminate call also destroys the ContextFactory. > > The ContextFactory can be initialized in one of two ways: > 1. ImageTransportFactory::Initialize will set up the > ContextFactory. This is used by things that invoke all of > content/browser/. > 2. Compositor::InitializeContextFactoryForTests() must be > explicitly called by any unit tests that create a compositor. > > Since some tests want a real GL context and some don't, this > does away with the misnomer of initializing the Compositor once > for the entire test suite, and then re-initializing somewhere > in the middle of the test suite. Instead, each test must > Initialize/Terminate the compositor with the ContextFactory > type of its choice. > > Incidently, this test enables 20 tests on aura or win_aura that > were previously being skipped. > > TBR=piman@chromium.org > BUG=258625 > > Review URL: https://chromiumcodereview.appspot.com/22293003 TBR=danakj@chromium.org Review URL: https://codereview.chromium.org/22648006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216907 0039d316-1c4b-4281-b951-d872f2087c98
-
- 11 Aug, 2013 6 commits
-
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216902 0039d316-1c4b-4281-b951-d872f2087c98
-
fmalita@chromium.org authored
http://build.chromium.org/f/chromium/perf/dashboard/ui/changelog_blink.html?url=/trunk&range=155899:155910&mode=html TBR=tdanderson@chromium.org BUG= Review URL: https://codereview.chromium.org/22371010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216901 0039d316-1c4b-4281-b951-d872f2087c98
-
binji@chromium.org authored
The last change (r216889) passed the trybots because I didn't try against HEAD. This change fixes examples that override domContentLoaded: nacl_io, file_io, and load_progress. BUG=none TBR=noelallen@chromium.org Review URL: https://codereview.chromium.org/22692005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216896 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-release@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216892 0039d316-1c4b-4281-b951-d872f2087c98
-
dbeam@chromium.org authored
BUG=263481,264289 TEST=WindowSelectorTest.BasicCycle TEST=Enable --ash-enable-overview-mode and use alt-tab to cycle through MRU windows. Cycling is done in overview mode on active display. Review URL: https://chromiumcodereview.appspot.com/22715005 TBR=flackr@chromium.org Review URL: https://chromiumcodereview.appspot.com/22778002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216890 0039d316-1c4b-4281-b951-d872f2087c98
-
binji@chromium.org authored
(NOTE: this fixes the NaCl SDK waterfall) A bug in common.js was causing the embed to load .pexe with application/x-nacl, which produces a bizarre failure message: NaCl module load failed: manifest: program property 'portable' does not have required key: 'url'. BUG=none R=noelallen@chromium.org Review URL: https://codereview.chromium.org/22777002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216889 0039d316-1c4b-4281-b951-d872f2087c98
-
- 10 Aug, 2013 23 commits
-
-
noelallen@chromium.org authored
make TOOLCHAIN=pnacl DEBUG is broken. This CL redirects all nacl-gdb calls to the gdb in newlib. For DEBUG builds, the EXECUTABLES=*.nexe For RELESE builds, the EXECUTABLES=*.pexe This creates a dependency on the *.bc -> *.nexe translation and feeds the output the the NMF generator, making the debugging case essitial the same as newlib. For RELEASE configs, we build a finalized .pexe and load that. common.js now only use application-pnacl for release versions. BUG=270745 R=sbc@chromium.org Review URL: https://codereview.chromium.org/22766003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216888 0039d316-1c4b-4281-b951-d872f2087c98
-
noelallen@chromium.org authored
We have been incorrectly passing in the name of the .nexe instead of runnable-ld.so as the "program" which is being debugged to gdb. BUG=271207 TBR=sbc@chromium.org Review URL: https://codereview.chromium.org/22434005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216887 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome://downloadsbenjhayden@chromium.org authored
PS1@r216878 BUG=270998 Review URL: https://codereview.chromium.org/22773003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216886 0039d316-1c4b-4281-b951-d872f2087c98
-
dongseong.hwang@intel.com authored
Currently DesktopDragDropClientAuraX11 does not use DesktopRootWindowHostX11 at all. Review URL: https://chromiumcodereview.appspot.com/22404006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216885 0039d316-1c4b-4281-b951-d872f2087c98
-
benjhayden@chromium.org authored
BUG=246208 R=asargent@chromium.org Review URL: https://codereview.chromium.org/22597002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216884 0039d316-1c4b-4281-b951-d872f2087c98
-
aruslan@chromium.org authored
This includes JNI bindings, Java interfaces and necessary glue for the requestAutocomplete dialog. BUG=157277 Review URL: https://chromiumcodereview.appspot.com/22566004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216883 0039d316-1c4b-4281-b951-d872f2087c98
-
benjhayden@chromium.org authored
R=asargent@chromium.org, scheib@chromium.org Review URL: https://codereview.chromium.org/22612003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216882 0039d316-1c4b-4281-b951-d872f2087c98
-
mukai@chromium.org authored
The notification notifies the change of the resolution, and contains "Revert" button in case the new resolution doesn't work well. Also it creates timeout in case the change operation is potentially dangerous, which means changing the resolution of the only one display. BUG=230733, 266097 R=oshima@chromium.org, derat@chromium.org TEST=new test cases in ash_unittests Review URL: https://chromiumcodereview.appspot.com/22703004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216881 0039d316-1c4b-4281-b951-d872f2087c98
-
dbeam@chromium.org authored
Implement newly saved card bubble for realz and update generated card bubble to match mocks and updated product requirements. Because these bubbles are not particularly similar any more, this CL splits them into separate interfaces (and hence separate controllers, files, test, etc.). Functional changes to generated card bubble: - removed link from bottom - added link to end of header text Functional changes to new card bubble: - removed bubble/window title - added card description (icon + title + label) - made link and header text real translations R=estade@chromium.org BUG=263156,263158 TBR=sky@chromium.org (for 1 char change to ui/views/window/non_client_view.h) NOTRY=True Review URL: https://chromiumcodereview.appspot.com/21668003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216880 0039d316-1c4b-4281-b951-d872f2087c98
-
pkotwicz@chromium.org authored
- Ignore the mouse position if mouse events are disabled (this is the case when the user is interacting with the device via touch) BUG=268209 TEST=ShelfLayoutManagerTest.GestureDrag Review URL: https://chromiumcodereview.appspot.com/22121002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216879 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
> Add option to import from bookmarks html file to "Import Bookmarks..." dialog. > > To test this new feature one can do the following: > > On chrome, open the "Import Bookmarks and Settings..." dialog, you can do this > by three ways, one is to navigate to chrome://settings/importData, another is > to open chrome://settings (either through wrench menu or navigating to it through > omnibox) and then under the Users category click on "Import Bookmarks..." button > to open the dialog. The third way to open this dialog > is Wrench->Bookmarks->Import Bookmarks and Settings...". > > Once the dialog is opened, open the "From" combobox and select "Bookmarks HTML File" item. > That should uncheck and disable all the checkboxes but "Favorites/Bookmarks" and present a > "Choose file" button in the place where "Import" button was. Click on that new button and select > your bookmarks html file, once you do that the import process should start, and if you file is > ok, chrome should import and present you with a success message. > > BUG=80685 > R=dbeam@chromium.org, isherman@chromium.org > > Review URL: https://codereview.chromium.org/22332003 It broke some Linux Tests of first run: FirstRunMasterPrefsImportBookmarksFile.ImportBookmarksFile: [4452:4452:0810/092454:2260755831:ERROR:audio_manager_pulse.cc(234)] Failed to connect to the context. Error: Connection refused ../../chrome/browser/first_run/first_run_browsertest.cc:186: Failure Value of: auto_import_state Actual: 5 Expected: MaskExpectedImportState(first_run::AUTO_IMPORT_CALLED | first_run::AUTO_IMPORT_PROFILE_IMPORTED | first_run::AUTO_IMPORT_BOOKMARKS_FILE_IMPORTED) Which is: 7 FirstRunMasterPrefsImportDefault.ImportDefault: [4405:4405:0810/092452:2258318309:ERROR:audio_manager_pulse.cc(234)] Failed to connect to the context. Error: Connection refused ../../chrome/browser/first_run/first_run_browsertest.cc:166: Failure Value of: auto_import_state Actual: 1 Expected: MaskExpectedImportState(first_run::AUTO_IMPORT_CALLED | first_run::AUTO_IMPORT_PROFILE_IMPORTED) Which is: 3 TBR=tfarina@chromium.org Review URL: https://codereview.chromium.org/22671003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216878 0039d316-1c4b-4281-b951-d872f2087c98
-
pkotwicz@chromium.org authored
BUG=268457 TEST=ImmersiveModeControllerAshTest.Bubbles Review URL: https://chromiumcodereview.appspot.com/22238003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216877 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216876 0039d316-1c4b-4281-b951-d872f2087c98
-
ronghuawu@chromium.org authored
R=mallinath@chromium.org Review URL: https://codereview.chromium.org/22471004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216875 0039d316-1c4b-4281-b951-d872f2087c98
-
flackr@chromium.org authored
BUG=263481,264289 TEST=WindowSelectorTest.BasicCycle TEST=Enable --ash-enable-overview-mode and use alt-tab to cycle through MRU windows. Cycling is done in overview mode on active display. Review URL: https://chromiumcodereview.appspot.com/22715005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216874 0039d316-1c4b-4281-b951-d872f2087c98
-
zork@chromium.org authored
BUG=248357 Review URL: https://chromiumcodereview.appspot.com/22695004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216873 0039d316-1c4b-4281-b951-d872f2087c98
-
lambroslambrou@chromium.org authored
This fixes a crash in Chromoting Android app when it hadn't been granted permission to access OAuth tokens for an account. Review URL: https://chromiumcodereview.appspot.com/22657003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216872 0039d316-1c4b-4281-b951-d872f2087c98
-
rdevlin.cronin@chromium.org authored
Added in a fix for the memory leak. Move ExtensionError class to extensions/browser/, since it doesn't need to be in chrome/. Limit the number of errors stored per extension to 100. Store errors in a map, keyed by Extension ID, since that is how we will likely be accessing them. BUG=21734 Review URL: https://chromiumcodereview.appspot.com/22647007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216871 0039d316-1c4b-4281-b951-d872f2087c98
-
oshima@chromium.org authored
BUG=157660 Review URL: https://chromiumcodereview.appspot.com/22626003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216870 0039d316-1c4b-4281-b951-d872f2087c98
-
rmsousa@chromium.org authored
Talkgadget can redirect the user to other subdomains, and our content script won't run over the intermediate 302 pages, only the final URL - so we can't assume that the actual redirect URI we'll receive will match the one we asked for. Note that there is still an implicit restriction that this must be a talkgadget subdomain (since that's our content script's url glob). BUG= Review URL: https://chromiumcodereview.appspot.com/22611008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216869 0039d316-1c4b-4281-b951-d872f2087c98
-
erg@chromium.org authored
This merges and reimplements what was the GlobalHistoryMenu class from the GTK+ port into linux_aura's GlobalMenuBarX11 class. BUG=265560 Review URL: https://chromiumcodereview.appspot.com/22562005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216868 0039d316-1c4b-4281-b951-d872f2087c98
-
justinlin@chromium.org authored
BUG=271056 Review URL: https://chromiumcodereview.appspot.com/22763003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216867 0039d316-1c4b-4281-b951-d872f2087c98
-
skuhne@chromium.org authored
BUG=235217 TEST=visual Review URL: https://chromiumcodereview.appspot.com/22715006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216866 0039d316-1c4b-4281-b951-d872f2087c98
-