summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix test data push for APK tests.nileshagrawal@chromium.org2012-05-174-9/+9
| | | | | | | | | | | | | test_package.test_suite_basename is used at a lof of places. For APK tests we need to strip "-debug" from the full test name. BUG=125059 TEST= Review URL: https://chromiumcodereview.appspot.com/10406030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137737 0039d316-1c4b-4281-b951-d872f2087c98
* views: Do not set capture on a widget if it cannot be activated.sadrul@chromium.org2012-05-174-2/+38
| | | | | | | | | BUG=128566 TEST=views_unittests:WidgetTest.ActivationCapture Review URL: https://chromiumcodereview.appspot.com/10383234 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137736 0039d316-1c4b-4281-b951-d872f2087c98
* Scaffolding for an experimental discovery API letting users inject links in ↵beaudoin@chromium.org2012-05-1720-1/+1035
| | | | | | | | | | | | | | | | | | | | the recommended pane of the New Tab Page. Documentation changes can be seen at: http://www.corp.google.com/~beaudoin/no_crawl/docs/experimental.discovery.html The following files don't have to be reviewed as they are generated by build.py: chrome/common/extensions/docs/experimental.discovery.html chrome/common/extensions/docs/experimental.html chrome/common/extensions/docs/samples.json BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10391034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137735 0039d316-1c4b-4281-b951-d872f2087c98
* Select theme resources from ResourceBundle at requested scale factor.flackr@chromium.org2012-05-17109-424/+662
| | | | | | | | | | | | | | Return the best match for a requested scale factor when fetching raw image data from ResourceBundle. TBR=aa,abodenha BUG=123611 TEST=ResourceBundle.LoadImageResourceBytes Review URL: https://chromiumcodereview.appspot.com/10387010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137734 0039d316-1c4b-4281-b951-d872f2087c98
* Use a temp data dir for IDB tests so persistence can be verified.jsbell@chromium.org2012-05-172-1/+50
| | | | | | | | | | | | | WebCore::IDBFactory always generates specifies an empty string (indicating in-memory storage), and relies on intermediate methods before WebCore::IDBFactoryBackendImpl is reached to rewrite with a non-empty string to use on-disk storage. This patch inserts a test-specific implementation of WebIDBFactory into the middle of the call path to specify a data dir if one was not specified, mirroring what is done in multiprocess Chromium during IPC. Prep work for http://webkit.org/b/83074 Review URL: https://chromiumcodereview.appspot.com/10382180 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137733 0039d316-1c4b-4281-b951-d872f2087c98
* Fix logging of string16s from gfx namespace on Windows.asvitkine@chromium.org2012-05-175-24/+28
| | | | | | | | | | | | I don't why this fixes it, but somehow having a SelectionModel << logging operator in the gfx namespace makes Visual Studio fail to find the << logging operator for string16 arguments. Per discussion with Scott, we decided to remove the << operators altogether and replace them with a ToString() function to be consistent with Rect, Size, etc. TEST=Check that adding a "LOG(INFO) << text();" line to RenderTextWin compiles. Review URL: https://chromiumcodereview.appspot.com/10332205 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137732 0039d316-1c4b-4281-b951-d872f2087c98
* IPC plumbing for IDBObjectStore.autoIncrementjsbell@chromium.org2012-05-175-0/+23
| | | | | | | | | | | | | This enables http://webkit.org/b/86662 to implement the feature - checking the internal autoIncrement flag of an object store. BUG=128386 TEST=browser_tests --gtest_filter='IndexedDBLayoutTest.BasicTests' Review URL: https://chromiumcodereview.appspot.com/10332204 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137731 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2012-05-171-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137730 0039d316-1c4b-4281-b951-d872f2087c98
* Added support for handling external app documents. These should much behave ↵zelidrag@chromium.org2012-05-179-9/+118
| | | | | | | | | | | pretty much the same as Google Documents with exception that they are hosted on external sites. This CL will expose them as files with .glink extension just like like drive clients do. BUG=126895 TEST=GDataParserTest.DocumentFeedJsonParser Review URL: https://chromiumcodereview.appspot.com/10381155 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137729 0039d316-1c4b-4281-b951-d872f2087c98
* Roll to pickup updated Mac reference buildjam@chromium.org2012-05-171-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137728 0039d316-1c4b-4281-b951-d872f2087c98
* Added icon for .glink files.zelidrag@chromium.org2012-05-171-0/+0
| | | | | | | | | | BUG=128895 TEST=none TBR=satorux Review URL: https://chromiumcodereview.appspot.com/10399071 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137726 0039d316-1c4b-4281-b951-d872f2087c98
* Disable GPU info collection on GPU process startup on Win/Mac.zmo@google.com2012-05-175-27/+70
| | | | | | | | | | | | | | | | | | This is because preliminary GPU info is enough for making final blacklist decisions on Win/Mac. However, at the moment on Linux, blacklist decisions are still depending on full GPU info in certain cases, so we still need to do it on Linux. The full GPU info collection is done on demand when about:gpu page opens. Also, we need GPU's vendor_id, device_id, driver_version for crash reporting in GPU process. So before about:gpu page opens, we won't have them. Therefore, we pass them down from browser process to GPU process through commandline switches. BUG=128082 TEST=about:gpu R=apatrick TBR=jam Review URL: https://chromiumcodereview.appspot.com/10310180 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137725 0039d316-1c4b-4281-b951-d872f2087c98
* Add user_info_ NULL check in case of guest mode.mukai@chromium.org2012-05-171-2/+4
| | | | | | | | | BUG=128514 TEST=manually Review URL: https://chromiumcodereview.appspot.com/10389193 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137723 0039d316-1c4b-4281-b951-d872f2087c98
* Make setup.exe compatible with the component build.gab@chromium.org2012-05-175-2/+169
| | | | | | | | | | | | | | | | | | | | | | | | | | The problem with the current component build is that chrome.exe and setup.exe only know to look for DLLs like base.dll in the current directory (except chrome.dll for which they're hardcoded to know where to look). On an install those DLLs are in the version directory so chrome.exe and setup.exe fail to run not finding required DLLs... To fix this we generate config files (to point in the version directory) and manifests (to list all the DLL dependencies explicitly) to be installed beside the exes. Each DLL also has a manifest in the version directory to give it an "assemblyIdentity" (i.e. a unique name which is referred to as a dependency by each exe's manifest). These manifests are called "assembly manifest" and do NOT interfere with the private manifest possibly embedded in each DLL (details here http://msdn.microsoft.com/en-us/library/windows/desktop/aa374219(v=vs.85).aspx) <dependency> tags then need to be added to chrome.exe.manifest and setup.exe.manifest for each DLL in the version directory it will use (to be safe we make add an entry for all DLLs as there is no downside to referring an unused DLL). In this step, we augment the manifests generated by the build instead of creating new one to make sure any property passed on by the build is kept and that we are only *adding* new functionality without hindering current behavior. NOTE: This CL doesn't make mini_installer.exe compatible with the component build yet (as mini_installer runs setup.exe right after extracting it and without any other DLLs/manifests beside it). However it is now possible to use setup.exe (which takes the exact same parameters as mini_installer.exe) from the build output directory with a component build :)!!! BUG=127233 TEST=Turn on component build with gyp config "component=shared_libary" and make sure we can install chrome with the generated setup.exe. Make sure we can run the installed Chrome. Make sure we can uninstall the installed Chrome (i.e. that setup.exe in <version_dir>/Installer is able to find its DLLs). Review URL: https://chromiumcodereview.appspot.com/10399041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137722 0039d316-1c4b-4281-b951-d872f2087c98
* Use display_email() for Uber Tray messages.mukai@chromium.org2012-05-171-1/+1
| | | | | | | | | BUG=124087 TEST=manually Review URL: https://chromiumcodereview.appspot.com/10388171 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137721 0039d316-1c4b-4281-b951-d872f2087c98
* Fix temp dir path for Android.nileshagrawal@chromium.org2012-05-172-4/+5
| | | | | | | | | | | | "/data/local/tmp" is not writable by applications. BUG=125059 TEST= Review URL: https://chromiumcodereview.appspot.com/10332218 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137719 0039d316-1c4b-4281-b951-d872f2087c98
* Add webpagereplay to svn:ignore of third_party.maruel@chromium.org2012-05-170-0/+0
| | | | | | | This dependency was added in r136708. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137718 0039d316-1c4b-4281-b951-d872f2087c98
* [Sync] Re-enable breakpad uploading for sync errors.zea@chromium.org2012-05-171-1/+1
| | | | | | | | | | | R=lipalani@chromium.org BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10382214 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137717 0039d316-1c4b-4281-b951-d872f2087c98
* Adds favicon and thumbnail columns to the chrome://suggestions-internals/ page.macourteau@chromium.org2012-05-171-1/+14
| | | | | | | | | BUG=none TEST=Visit the chrome://suggestions-internals/ page, and make sure that the favicon and thumbnail columns are present, and that they contain data in at least some cells. Review URL: https://chromiumcodereview.appspot.com/10382220 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137716 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2012-05-171-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137715 0039d316-1c4b-4281-b951-d872f2087c98
* Roll to pickup updated Linux reference buildjam@chromium.org2012-05-171-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137714 0039d316-1c4b-4281-b951-d872f2087c98
* ash: Select omnibox text on mouse up instead of down.derat@chromium.org2012-05-174-22/+160
| | | | | | | | | | | | | | | Defer selection of the text in an unfocused omnibox until the release event. Otherwise, all of the text starting from the left side is selected when the user is trying to highlight just a portion of the URL. BUG=128126 TEST=added, also did manual testing Review URL: https://chromiumcodereview.appspot.com/10386173 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137711 0039d316-1c4b-4281-b951-d872f2087c98
* Display suggestions label, unless there are no suggestions.groby@chromium.org2012-05-172-23/+57
| | | | | | | | | | BUG=127996 TEST=WebIntentPickerSheetControllerTest.SuggestionView Review URL: https://chromiumcodereview.appspot.com/10387141 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137709 0039d316-1c4b-4281-b951-d872f2087c98
* Did not mean to check in this file. Pre-emptively fixing build bustage.ben@chromium.org2012-05-171-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137708 0039d316-1c4b-4281-b951-d872f2087c98
* Make Chrome limp briefly before freaking out with aura no ash.ben@chromium.org2012-05-176-4/+27
| | | | | | | | BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10407022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137706 0039d316-1c4b-4281-b951-d872f2087c98
* Add Freqiency column for wifi in about:networkstevenjb@chromium.org2012-05-171-0/+2
| | | | | | | | | | | BUG=none TEST=Go to about:network, Frequency column should exist for wifi networks. TBR=jhawkins Review URL: https://chromiumcodereview.appspot.com/10386192 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137705 0039d316-1c4b-4281-b951-d872f2087c98
* browser: Add include rules to prevent people including from ↵tfarina@chromium.org2012-05-172-0/+40
| | | | | | | | | | | | | | chrome/browser/ui/views. Whitelist some includes for now until they are fixed. BUG=125846 TEST= run ./tools/checkdeps/checkdeps.py, it should succeed. R=ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/10407025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137704 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2012-05-171-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137703 0039d316-1c4b-4281-b951-d872f2087c98
* Update WebKit to r117456.pkasting@chromium.org2012-05-171-1/+1
| | | | | | | | | BUG=none TEST=none TBR=steveblock Review URL: https://chromiumcodereview.appspot.com/10407028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137702 0039d316-1c4b-4281-b951-d872f2087c98
* Add TrayLocale for locale change notifications.stevenjb@google.com2012-05-179-5/+243
| | | | | | | | | | TBR=ben for ash/ string changes BUG=124726 TEST=On a device wuth ash-notify enabled in about:flags, change the locale and re-login. Notification should appear. Revert should revert the change after re-login. If ignored, the notification should appear again after re-login. Closing the notification should clear it. Review URL: https://chromiumcodereview.appspot.com/10391177 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137700 0039d316-1c4b-4281-b951-d872f2087c98
* Reland 137540 - Disable off-store extension installs by default. Also get ↵aa@chromium.org2012-05-1720-188/+135
| | | | | | | | | | | | | | | | rid of ExtensionService::IsDownloadFromGallery." This removes a pyauto test that was failing. The test needs to be different depending on whether a feature is on or off, but there's currently no good way to test whether a feature is enabled from pyauto. BUG=55584 TBR=mpcomplete@chromium.org Review URL: https://chromiumcodereview.appspot.com/10399069 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137699 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2012-05-171-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137698 0039d316-1c4b-4281-b951-d872f2087c98
* roll gyp 1381:1384thakis@chromium.org2012-05-171-1/+1
| | | | | | | | | | | | | | 1382: msvs: add some touches to many-actions test 1383: Revert r1362: MSVS 2008: Fix to ensure that actions are re-run when the command changes 1384: mac ninja and make: Add support for GCC_ENABLE_OBJC_GC. BUG=none TEST=none TBR=mseaborn Review URL: https://chromiumcodereview.appspot.com/10399070 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137697 0039d316-1c4b-4281-b951-d872f2087c98
* Address outstanding comments from CL 10384140lambroslambrou@chromium.org2012-05-172-2/+9
| | | | | | | | | | | | This adds some clarifying comments, no code-changes here. BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10406022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137695 0039d316-1c4b-4281-b951-d872f2087c98
* Initialize XInput2 on demand - fixes ash_shell mouse eventsrbyers@chromium.org2012-05-171-12/+14
| | | | | | | | | | | | | MessagePumpX::HasXInput2 currently assumes a message pump has already been created and so XInput2 has been initialized. This may not always be the case (eg. when deciding early at startup whether we should load touch-specific resources). Instead we now initialize XInput2 on demand - either when the message pump is created, or when HasInput2 is called earlier. BUG=128367 TEST= Review URL: https://chromiumcodereview.appspot.com/10386175 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137694 0039d316-1c4b-4281-b951-d872f2087c98
* Allow GLES2CmdDecoder to change the GLSurface associated with the default FBO.apatrick@chromium.org2012-05-1716-49/+145
| | | | | | | | | This is part 1. It can't actually be used yet because there are assumptions that the surface never changed. It is intended to allow each renderer process to create only one command buffer for use by the compositor while being able to switch the surface between different windows, for examnple if a single renderer process handles multiple tabs of the same site. Review URL: https://chromiumcodereview.appspot.com/10388131 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137693 0039d316-1c4b-4281-b951-d872f2087c98
* convert chromeos file manager to loadTimeDataestade@chromium.org2012-05-175-28/+25
| | | | | | | | | BUG=122753 TEST=manual,unit Review URL: https://chromiumcodereview.appspot.com/10391075 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137692 0039d316-1c4b-4281-b951-d872f2087c98
* retry 137554 - convert help page to loadTimeDataestade@chromium.org2012-05-175-16/+39
| | | | | | | | | BUG=122753 TEST=manual Review URL: https://chromiumcodereview.appspot.com/10408007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137691 0039d316-1c4b-4281-b951-d872f2087c98
* Improving the process model extension APInasko@chromium.org2012-05-1721-186/+2908
| | | | | | | | | | BUG=32302 TEST=Unit tests. Review URL: https://chromiumcodereview.appspot.com/10175008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137690 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 137685 (broke check_deps on linux builder) - Rename ↵fischman@chromium.org2012-05-1717-94/+95
| | | | | | | | | | | | | | InvalidationVersionTracker to InvalidationStateTracker in preparation to add more methods to that class. BUG=124140 Review URL: https://chromiumcodereview.appspot.com/10407014 TBR=munjal@chromium.org Review URL: https://chromiumcodereview.appspot.com/10391186 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137689 0039d316-1c4b-4281-b951-d872f2087c98
* Added menuItem icon support, and little API for menu modification.zvorygin@chromium.org2012-05-172-0/+57
| | | | | | | | | | BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10377169 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137687 0039d316-1c4b-4281-b951-d872f2087c98
* views: Move balloon_collection_views.cc into views/ directory.tfarina@chromium.org2012-05-172-2/+2
| | | | | | | | | BUG=125846 R=ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/10409006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137686 0039d316-1c4b-4281-b951-d872f2087c98
* Rename InvalidationVersionTracker to InvalidationStateTracker in preparationmunjal@chromium.org2012-05-1717-95/+94
| | | | | | | | | to add more methods to that class. BUG=124140 Review URL: https://chromiumcodereview.appspot.com/10407014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137685 0039d316-1c4b-4281-b951-d872f2087c98
* Fix a couple of bugs with the image skia implementationpkotwicz@chromium.org2012-05-171-1/+1
| | | | | | | | | Bug=124566 Test=Manual Review URL: https://chromiumcodereview.appspot.com/10389109 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137684 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 137445 - CHECK for that we are not seeing user-visible ↵rch@chromium.org2012-05-171-2/+0
| | | | | | | | | | | | | | SPDY_PING_FAILED errors. BUG=107048 Review URL: https://chromiumcodereview.appspot.com/10243016 TBR=rch@chromium.org Review URL: https://chromiumcodereview.appspot.com/10408010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137683 0039d316-1c4b-4281-b951-d872f2087c98
* Update use of TimeDelta in chrome/browser/*, ui/views/*, and other places.tedvessenes@gmail.com2012-05-1727-73/+90
| | | | | | | | | | R=ben@chromium.org BUG=108171 Review URL: https://chromiumcodereview.appspot.com/10026013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137682 0039d316-1c4b-4281-b951-d872f2087c98
* ash: Fix a crash when going back to the main uber-tray popup from the ↵sadrul@chromium.org2012-05-171-1/+3
| | | | | | | | | | | | | | | network popup. Going back to the main popup from the network popup causes the network popup to get destroyed. So trying to access its internals afterwards causes a crash. Return early to avoid this. BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10406020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137681 0039d316-1c4b-4281-b951-d872f2087c98
* ash: Make the touchy heads-up display more colorful/useful.sadrul@chromium.org2012-05-172-0/+107
| | | | | | | | | BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10399061 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137680 0039d316-1c4b-4281-b951-d872f2087c98
* chromeos: Ignore power button presses when screen is off.derat@chromium.org2012-05-175-2/+39
| | | | | | | | | | | | | | | Make PowerButtonController ignore power button events when the screen is turned off -- if the user hits the power button to turn the screen back on, we don't want to lock or shutdown if they hold it a bit too long. BUG=128451 TEST=added, also did manual testing Review URL: https://chromiumcodereview.appspot.com/10382211 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137679 0039d316-1c4b-4281-b951-d872f2087c98
* Disable warning in leveldbscottmg@google.com2012-05-171-0/+7
| | | | | | | | | | | | | Patch has been committed upstream (internal) but it will be a while before it's released to code.google.com, and then rolled into Chromium. So, disable minor warning for now. R=thakis@chromium.org BUG=126483 Review URL: https://chromiumcodereview.appspot.com/10384092 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137678 0039d316-1c4b-4281-b951-d872f2087c98