summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Publish DEPS for Chromium 26.0.1404.026.0.1404.0gitdeps2014-04-072-678/+591
|
* Remove service name param from requestFileSystem JavaScript API.calvinlo@chromium.org2013-02-059-41/+18
| | | | | | | | | BUG=172562 TBR=benwells@chromium.org Review URL: https://codereview.chromium.org/12090087 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180630 0039d316-1c4b-4281-b951-d872f2087c98
* Register autofill sync types on mobilecjhopman@chromium.org2013-02-052-12/+22
| | | | | | | | | | | | | | This change registers the autofill and autofillProfile sync types on Android (in addition to desktop platforms). Also add an AUTOFILL type to ModelTypes. BUG=174232 Review URL: https://chromiumcodereview.appspot.com/12089025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180629 0039d316-1c4b-4281-b951-d872f2087c98
* Move DownloadFileOperation to base_operations.hidehiko@chromium.org2013-02-057-202/+280
| | | | | | | | | | | | | The operation can be shared between GData WAPI and Drive API v2. So, as the preparation of the migration, this moves it and its test to base_operations. Note that the unittest for the moved class is in base_operation_server_unittest.cc. The reason why it is split from the existing base_operation_unittest.cc is that unfortunately the test won't work on Android. The cause is as same as gdata_wapi_operations_unittest/drive_api_operations_unittest. So, disabled it on Android in the same way with them. BUG=148627 TEST=Ran unit_tests. Review URL: https://chromiumcodereview.appspot.com/12088104 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180628 0039d316-1c4b-4281-b951-d872f2087c98
* This patch ensures that whenever a sync operation in TemplateURLService adds ↵beaudoin@chromium.org2013-02-059-28/+260
| | | | | | | | | | | | or updates a TemplateURL corresponding to a prepopulated engine, the latest built-in version of the prepopulated engine data is used. We also bump the the version number of prepopulated_engines.json to fix currently broken databases. BUG=171350 Review URL: https://chromiumcodereview.appspot.com/12084076 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180627 0039d316-1c4b-4281-b951-d872f2087c98
* This patch is to implement. storage.onAvailableCapacityChanged event.hongbo.min@intel.com2013-02-0512-131/+225
| | | | | | | | | | | | | | | | | Current implementation adopts polling-based method to check the free space change periodically at one second time interval. Once a listener is attached to the onAvailableCapacityChanged event, all storages are being watched, and the event will be emitted as soon as the free space changes. The watching will be stopped when the last event listener is removed. BUG=163862 TEST=browser_tests --gtest_filter=SystemInfoStorageApiTest.Storage Review URL: https://chromiumcodereview.appspot.com/12084017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180626 0039d316-1c4b-4281-b951-d872f2087c98
* Recognize "\r\n" (Windows) line endings in base::JSONParser so that line ↵fangjue23303@gmail.com2013-02-053-3/+19
| | | | | | | | | | | numbers in error reports won't confuse users. BUG=167424 TEST=Unit tests Review URL: https://chromiumcodereview.appspot.com/12026035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180625 0039d316-1c4b-4281-b951-d872f2087c98
* Pass ScopedJavaGlobalRef to bind() by valuejoth@chromium.org2013-02-052-14/+10
| | | | | | | | | | | | | ScopedJavaGlobalRef now has a copy constructor, so we can make the code simpler (no base::Owned() explanations) by just passing by value. BUG= Review URL: https://chromiumcodereview.appspot.com/11971007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180624 0039d316-1c4b-4281-b951-d872f2087c98
* [cros] Allow file select dialogs from extension popupsbenwells@chromium.org2013-02-053-35/+58
| | | | | | | | | BUG=169148 Review URL: https://chromiumcodereview.appspot.com/11961005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180623 0039d316-1c4b-4281-b951-d872f2087c98
* Make host/url references configurable.rmsousa@chromium.org2013-02-0546-149/+578
| | | | | | | | | | | | | | | | | | In C++, they're all passed as optional command line parameters (like google_apis/gaia already allows us to do with the gaia oauth urls). So one can start the host with a monstrosity such as: out/Debug/remoting_me2me_host out/Debug/remoting_start_host --gaia-host=accounts.google.com --oauth-user-info-url=https://www.googleapis.com/oauth2/v1/userinfo --chromoting-bot-jid=remoting@bot.talk.google.com --chromoting-base-url=https://www.googleapis.com/chromoting/v1 --talk-server-host=talk.google.com --talk-server-port=5222 -[-disable-talk-server-tls] --oauth2-token-url=https://accounts.google.com/o/oauth2/token In Javascript and IT2Me, unfortunately we don't have a command line, so instead we put all these settings in plugin_settings.js, and the javascript passes them all into the it2me plugin as appropriate. They can then be changed by manually hacking plugin_settings.js and manifest.json in the build output, changing the remoting.settings object at runtime (although any new hosts you configure that are not in the manifest's CSP won't work), or, preferrably, by passing them via environment variables to the build, and letting build-webapp.py do its magic - for example, like with this: GOOGLE_CLIENT_ID_REMOTING=<clientid> GOOGLE_CLIENT_SECRET_REMOTING=<secret> OAUTH2_ACCOUNTS_HOST=https://accounts.google.com OAUTH2_API_HOST=https://www.googleapis.com CHROMOTING_BOT_JID=remoting@bot.talk.google.com CHROMOTING_API_HOST=https://www.googleapis.com TALK_SERVER_HOST=talk.google.com TALK_SERVER_PORT=5222 TALK_SERVER_USE_TLS=true TALK_GADGET_HOST_SUFFIX=talkgadget.google.com OAUTH2_REDIRECT_HOST_PREFIX=https://chromoting-oauth. TALK_GADGET_HOST_PREFIX=https://chromoting-client. ninja -C out/Debug remoting_webapp I've tested with me2me (host and client) and it2me (share and access), and verified both that the defaults work as before (without command line parameters), and that I can substitute test server hostnames in all of those parameters. BUG= Review URL: https://chromiumcodereview.appspot.com/11346040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180622 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 180600jschuh@chromium.org2013-02-059-49/+50
| | | | | | | | | | | | | | | | > Follow-on fixes and naming changes for https://codereview.chromium.org/12086077/ > > BUG=172573 > Review URL: https://codereview.chromium.org/12177018 Windows and aura bots are failing, and this is the only CL in range that had no passing try runs for those tests. If the bots don't go green, I'll unrevert the revert. TBR=cevans@chromium.org Review URL: https://codereview.chromium.org/12210009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180620 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 180598 - Suspected to break win_aura testkinuko@chromium.org2013-02-051-127/+1
| | | | | | | | | | | | | > Windows: Record which D3D11 feature levels are supported in histograms. > > Also collects whether B8G8R8A8 is supported for textures and render targets. > > Review URL: https://chromiumcodereview.appspot.com/12183003 TBR=apatrick@chromium.org Review URL: https://codereview.chromium.org/12211007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180619 0039d316-1c4b-4281-b951-d872f2087c98
* Add whitespace to trigger bot run.jln@chromium.org2013-02-051-0/+1
| | | | | | | | TBR=jln Review URL: https://codereview.chromium.org/12210007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180613 0039d316-1c4b-4281-b951-d872f2087c98
* Prevent bindings escalation on an existing NavigationEntry.creis@chromium.org2013-02-056-6/+102
| | | | | | | | | | BUG=173672 TEST=See bug for repro steps. Review URL: https://chromiumcodereview.appspot.com/12086109 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180607 0039d316-1c4b-4281-b951-d872f2087c98
* Move media browser tests from content/browser/* into content/browser/media/shadi@chromium.org2013-02-055-10/+3
| | | | | | | | | BUG=174067 TEST=content_browsertests --gtest_filter=*Media* Review URL: https://chromiumcodereview.appspot.com/12194019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180606 0039d316-1c4b-4281-b951-d872f2087c98
* [Media Gallery] Fix FilePath namespace in chrome/browser/media_gallery/ files.kmadhusu@chromium.org2013-02-0517-115/+121
| | | | | | | | | | BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/12156007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180605 0039d316-1c4b-4281-b951-d872f2087c98
* Remove reference counting from media::AudioRenderer and friends.scherkus@chromium.org2013-02-0516-140/+89
| | | | | | | | BUG=173313 Review URL: https://codereview.chromium.org/12140002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180604 0039d316-1c4b-4281-b951-d872f2087c98
* Fix ServerBoundCertService::RequestHandle::OnRequestComplete possible use ↵mattm@chromium.org2013-02-051-2/+4
| | | | | | | | | | | after free. BUG=173465 Review URL: https://chromiumcodereview.appspot.com/12092104 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180603 0039d316-1c4b-4281-b951-d872f2087c98
* BrowserPlugin - Change the setting of AutoSize attribute to follow HTML specmthiesse@chromium.org2013-02-059-63/+267
| | | | | | | | | | | | | | | | Code is completed, new tests still need to be written. Existing tests ran (and passed): content_browsertests --gtest_filter="BrowserPlugin*" browser_tests --gtest_filter="WebViewTest*" BUG= Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=180442 Review URL: https://chromiumcodereview.appspot.com/12049018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180602 0039d316-1c4b-4281-b951-d872f2087c98
* Follow-on fixes and naming changes for https://codereview.chromium.org/12086077/cevans@chromium.org2013-02-059-50/+49
| | | | | | | BUG=172573 Review URL: https://codereview.chromium.org/12177018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180600 0039d316-1c4b-4281-b951-d872f2087c98
* Stop reusing RectangleUpdateDecoder for multiple sessions.sergeyu@chromium.org2013-02-054-26/+35
| | | | | | | | | | | Previously RectangleUpdateDecoder could be reused for more than one session which sometimes may lead to crashes. BUG=173004 Review URL: https://codereview.chromium.org/12154004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180599 0039d316-1c4b-4281-b951-d872f2087c98
* Windows: Record which D3D11 feature levels are supported in histograms.apatrick@chromium.org2013-02-051-1/+127
| | | | | | | | Also collects whether B8G8R8A8 is supported for textures and render targets. Review URL: https://chromiumcodereview.appspot.com/12183003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180598 0039d316-1c4b-4281-b951-d872f2087c98
* Enabling External Clear Key CDM on Mac OSdkovalev@chromium.org2013-02-053-4/+15
| | | | | | | | | | BUG=152864 TEST=clearkeycdmplugin build on Mac OS Review URL: https://chromiumcodereview.appspot.com/12096104 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180597 0039d316-1c4b-4281-b951-d872f2087c98
* Show an icon to launch Chrome (chrome_app) on the Windows App Launcher.tapted@chromium.org2013-02-054-7/+11
| | | | | | | | | | | BUG=168954 TEST=Icon to launch chrome/chromium should appear on the windows app launcher. Behaviour on ChromeOS/ash should not change. Review URL: https://chromiumcodereview.appspot.com/12090110 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180596 0039d316-1c4b-4281-b951-d872f2087c98
* For sign-in, if chrome://settings is not in a browser window, open a new one.tapted@chromium.org2013-02-053-6/+10
| | | | | | | | | | | | | This prevents a browser crash, and gives App Launcher Settings App a fallback mechanism for signin when switching accounts. App Launcher signin is typically done from the launcher itself. BUG=173720 TEST=From App Launcher Settings App, disconnect Google Account, then sign in. Review URL: https://chromiumcodereview.appspot.com/12192014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180594 0039d316-1c4b-4281-b951-d872f2087c98
* Instant Extended: Ignore Instant URL blacklist on omnibox focus.shishir@chromium.org2013-02-052-22/+33
| | | | | | | | | BUG=167991 Review URL: https://chromiumcodereview.appspot.com/12188019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180593 0039d316-1c4b-4281-b951-d872f2087c98
* Remove reference counting from media::VideoRenderer and friends.scherkus@chromium.org2013-02-0515-72/+78
| | | | | | | | BUG=173313 Review URL: https://codereview.chromium.org/12114024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180591 0039d316-1c4b-4281-b951-d872f2087c98
* Fix crash where the SpeechRecognitionBubble doesn't have a parent.erg@chromium.org2013-02-051-2/+11
| | | | | | | | | | | This can happen when there isn't a location bar. BUG=173746 Review URL: https://chromiumcodereview.appspot.com/12197015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180590 0039d316-1c4b-4281-b951-d872f2087c98
* Modified metric parsing to group by page when parsing times/t tests.simonhatch@chromium.org2013-02-051-20/+62
| | | | | | | | | | BUG= NOTRY=true Review URL: https://chromiumcodereview.appspot.com/12184023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180589 0039d316-1c4b-4281-b951-d872f2087c98
* Add chromeos_power definition to WATCHLISTS.derat@chromium.org2013-02-051-0/+6
| | | | | | | | | BUG=none TBR=davemoore@chromium.org Review URL: https://codereview.chromium.org/12186030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180588 0039d316-1c4b-4281-b951-d872f2087c98
* Preload HSTS and pins for two more Google domains.palmer@chromium.org2013-02-052-0/+2
| | | | | | | | | | | | developer.android.com and dl.google.com. BUG=170913 TEST=developer.android.com and dl.google.com still work Review URL: https://chromiumcodereview.appspot.com/11938026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180587 0039d316-1c4b-4281-b951-d872f2087c98
* views: add a "footnote view" to DialogClientView.estade@chromium.org2013-02-056-4/+67
| | | | | | | | | | This will be used for the Terms of Service banner in AutofillDialogViews. BUG=170511 Review URL: https://codereview.chromium.org/12047102 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180585 0039d316-1c4b-4281-b951-d872f2087c98
* Nukes TableViewWin and related classes. TableViewViews has been thesky@chromium.org2013-02-0518-3987/+964
| | | | | | | | | | | | | default for a couple of weeks and I'm not aware of any major issues. BUG=none TEST=none R=ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/12183021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180584 0039d316-1c4b-4281-b951-d872f2087c98
* Make TestWebIDBFactory allocate a separate WebIDBFactory per thread.darin@chromium.org2013-02-057-84/+123
| | | | | | | | | | | | This allows the main WebKit thread and web worker threads to each get their own WebIDBFactory instance, which mimics the behavior when we let the WebIDBFactory be instantiated via the WebKitPlatformSupport::idbFactory() method. R=alecflett@chromium.org Review URL: https://chromiumcodereview.appspot.com/12181010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180583 0039d316-1c4b-4281-b951-d872f2087c98
* Remove redundant reset() calls in AuthenticatorTestBase::RunChannelAuth.dcheng@chromium.org2013-02-052-16/+8
| | | | | | | | | | | | The code already transfers ownership of these pointers in the callbacks, so there's no need to do it again. BUG=162971 Review URL: https://chromiumcodereview.appspot.com/12178005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180581 0039d316-1c4b-4281-b951-d872f2087c98
* suppress a leakthakis@chromium.org2013-02-051-0/+7
| | | | | | | | | BUG=174209 TBR=mgist Review URL: https://codereview.chromium.org/12197029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180580 0039d316-1c4b-4281-b951-d872f2087c98
* Remove duplicate code to set tab delegate in ConstrainedWebDialogDelegateViews.dcheng@chromium.org2013-02-053-18/+1
| | | | | | | | | | | | The base class already handles this logic in its constructor, so it is unnecessary to do so in any classes that inherit from it. BUG=162971 Review URL: https://chromiumcodereview.appspot.com/12188006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180579 0039d316-1c4b-4281-b951-d872f2087c98
* Replace VideoRendererBase Get/PutCurrentFrame() with a VideoFrame-containing ↵scherkus@chromium.org2013-02-059-320/+167
| | | | | | | | | | callback. BUG=108435 Review URL: https://codereview.chromium.org/12096081 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180578 0039d316-1c4b-4281-b951-d872f2087c98
* Check that path exists before saying pnacl is installed in about:nacl.jvoung@google.com2013-02-051-1/+5
| | | | | | | | | | | | Previously, the path service would give an empty path when it is not yet installed. Now it has a default value, which may or may not exist. BUG=none Review URL: https://codereview.chromium.org/12178021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180577 0039d316-1c4b-4281-b951-d872f2087c98
* [Media Gallery, Clean up] Fix FilePath namespace in ↵kmadhusu@chromium.org2013-02-0530-202/+218
| | | | | | | | | | | | chrome/browser/system_monitor files. BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/12180020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180576 0039d316-1c4b-4281-b951-d872f2087c98
* Allow manifest handlers to declare keys they depend on that must be parsed ↵yoz@chromium.org2013-02-0547-84/+393
| | | | | | | | | | | | | | before them. Also fixes linked_ptr usage for multi-key handlers. BUG=159265 TBR=ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/12091115 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180575 0039d316-1c4b-4281-b951-d872f2087c98
* Load ChromeVox into the webui profile, not default profile.dmazzoni@chromium.org2013-02-051-1/+3
| | | | | | | | | | | | | This fixes a bug where enabling or disabling spoken feedback wasn't having any effect on the last OOBE screens (user image), even though it worked fine everywhere else. BUG=165236 Review URL: https://chromiumcodereview.appspot.com/12090123 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180574 0039d316-1c4b-4281-b951-d872f2087c98
* Sprinkle some CHECK()s in media::VideoRendererBase to help track down a crash.scherkus@chromium.org2013-02-051-1/+2
| | | | | | | | BUG=174150 Review URL: https://codereview.chromium.org/12179023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180573 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2013-02-051-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180572 0039d316-1c4b-4281-b951-d872f2087c98
* Attempt at fixing inability to attach a tab. We should only querysky@chromium.org2013-02-053-15/+30
| | | | | | | | | | | | | touch location if the drag is the result of a gesture. BUG=172950 TEST=none R=sadrul@chromium.org Review URL: https://chromiumcodereview.appspot.com/12179014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180571 0039d316-1c4b-4281-b951-d872f2087c98
* Printing selection from context menu.vitalybuka@chromium.org2013-02-0519-79/+114
| | | | | | | | BUG=83098 Review URL: https://chromiumcodereview.appspot.com/12177009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180570 0039d316-1c4b-4281-b951-d872f2087c98
* sync: Rename timestamp to timestamp_msec to make the unit obvious.albertb@chromium.org2013-02-054-5/+5
| | | | | | | | | | R=zea,sky BUG= Review URL: https://chromiumcodereview.appspot.com/12088117 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180569 0039d316-1c4b-4281-b951-d872f2087c98
* [Chromoting] Check cursor data size on client before copying data.garykac@chromium.org2013-02-051-0/+8
| | | | | | Review URL: https://chromiumcodereview.appspot.com/11642060 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180568 0039d316-1c4b-4281-b951-d872f2087c98
* Rolling GYP to r1568. Changes:alexeypa@chromium.org2013-02-051-1/+1
| | | | | | | | | | | | | | - r1568: Reverting accidental change to test/lib/TestGyp.py (from r1567) - r1567: Speculative fix for mt.exe general error c101008a (The parameter is incorrect). - r1566: Xcode: Coalesce multiple "copies" sections in the same target with the same "destination" property into the same PBXCopyFilesBuildPhase. BUG=173052 TBR=scottmg@chromium.org Review URL: https://codereview.chromium.org/12204002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180567 0039d316-1c4b-4281-b951-d872f2087c98
* Fix NULL-dereference in ContentConditionjyasskin@chromium.org2013-02-052-20/+37
| | | | | | | | | | | when the css attribute has the wrong type. BUG=172011 Review URL: https://chromiumcodereview.appspot.com/12094095 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180565 0039d316-1c4b-4281-b951-d872f2087c98