- 30 May, 2014 40 commits
-
-
glider@chromium.org authored
BUG=302040 R=thakis@chromium.org Review URL: https://codereview.chromium.org/296173006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273830 0039d316-1c4b-4281-b951-d872f2087c98
-
limasdf@gmail.com authored
alarm, commands, declartive, storage api and extension_gcm_app_handler. Also, removed unwanted extension:: namespace prefix. R=rdevlin.cronin@chromium.org BUG=376293 Review URL: https://codereview.chromium.org/299393002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273829 0039d316-1c4b-4281-b951-d872f2087c98
-
battre@chromium.org authored
Revert due to test failure. See http://crbug.com/303491#c97 for details. > Re-enable PDFExtensionTest.BasicPlugin > > This test was disabled because it was failing. A few changes have been made: > -The page zoom cannot be assumed to be 100% on load as it will depend on the screen size being tested on. So testPageSize now doesn't make that assumption. > -testAccessibilityWithPage was flaking because accessibility information was not always returned for the two text boxes. I spent a bit of time investigating, but couldn't work it out so I've left it partially disabled for now and filed crbug.com/378091. > -The files have all been moved to a more appropriate location (in particular the test was moved out of the data directory). > > BUG=303491 > > Review URL: https://codereview.chromium.org/290803007 TBR=raymes@chromium.org Review URL: https://codereview.chromium.org/303163004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273828 0039d316-1c4b-4281-b951-d872f2087c98
-
pbos@chromium.org authored
Adding new-API files to libjingle.gyp to prevent linker errors when submitting wiring up the API into libjingle. R=ronghuawu@chromium.org BUG=webrtc:1788 Review URL: https://codereview.chromium.org/301793002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273827 0039d316-1c4b-4281-b951-d872f2087c98
-
kinaba@chromium.org authored
Previously we've abused .volume_id for the purpose, but now we have a dedicated field for the volume name. Now the .volume_id field can be arbitrary human unreadable string, but I'd like to keep it as in the current form since there's also no other reason to make it cryptic. BUG=none Review URL: https://codereview.chromium.org/305053004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273826 0039d316-1c4b-4281-b951-d872f2087c98
-
marja@chromium.org authored
I recently fixed some places which passed empty URLs around (r272182), and these tests might have been failing because of the empty URL behavior (empty URLs were treated as the home page, and maybe the home page is something different on the official Mac builder than other builders). Feel free to revert this commit if the tests fail. R=bartfab@chromium.org TBR=sky@chromium.org BUG=314819 Review URL: https://codereview.chromium.org/308083004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273825 0039d316-1c4b-4281-b951-d872f2087c98
-
battre@chromium.org authored
Reverting due to failing tests. See http://crbug.com/370039#c5 for details. > Added alternative configuration for the data reduction proxy > > Added a second configuration that can support two http proxies and one https proxy. In the process, added a new DataReductionProxyParams object to encapsulate static configuration details and made DataReductionSettingsAndroid a BrowserKeyedContextService. > > BUG=370039 > > Review URL: https://codereview.chromium.org/286013002 TBR=bengr@chromium.org Review URL: https://codereview.chromium.org/307013003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273824 0039d316-1c4b-4281-b951-d872f2087c98
-
raymes@chromium.org authored
This implements the function which sends certain key events to the PDF plugin. This allows the document to be scrolled even when it isn't focused. BUG=303491 Review URL: https://codereview.chromium.org/282113004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273823 0039d316-1c4b-4281-b951-d872f2087c98
-
simonb@chromium.org authored
Fixes a bug in prior commit. BUG= Review URL: https://codereview.chromium.org/304953002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273822 0039d316-1c4b-4281-b951-d872f2087c98
-
blundell@chromium.org authored
This CL changes the dependence of GoogleURLTracker(InfoBarDelegate, MapEntry) on InfoBarService to instead be a dependence on infobars::InfoBarManager. The only reason that InfoBarManager wasn't sufficient was that GoogleURLTrackerInfoBarDelegate obtained the WebContents from the InfoBarService. This flow is replaced by introducing an OpenURL() API on GoogleURLTrackerNavigationHelper (GoogleURLTrackerNavigationHelperImpl implements this API by calling through to its WebContents instance, which is the same instance associated with the InfoBarService). BUG=373231,373233 Review URL: https://codereview.chromium.org/293503003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273821 0039d316-1c4b-4281-b951-d872f2087c98
-
blundell@chromium.org authored
This CL moves the initialization of the hardware class on ChromeOS out of MetricsService and into ChromeOSMetricsProvider via ChromeMetricsServiceClient. MetricsService now pass |OnInitTaskGotHardwareClass()| as the callback to ChromeMetricsServiceClient::StartGatheringMetrics(). ChromeMetricsServiceClient::StartGatheringMetrics() posts a task to the FILE thread calling ChromeMetricsServiceClient::InitTaskGetHardwareClass(). The latter function calls into ChromeOSMetricsProvider when on ChromeOS and directly calls the callback passed to it on other platforms. A followup CL will move the rest of the embedder-specific initial metrics gathering flow out of MetricsService. BUG=375776 Review URL: https://codereview.chromium.org/301633006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273820 0039d316-1c4b-4281-b951-d872f2087c98
-
raymes@chromium.org authored
This test was disabled because it was failing. A few changes have been made: -The page zoom cannot be assumed to be 100% on load as it will depend on the screen size being tested on. So testPageSize now doesn't make that assumption. -testAccessibilityWithPage was flaking because accessibility information was not always returned for the two text boxes. I spent a bit of time investigating, but couldn't work it out so I've left it partially disabled for now and filed crbug.com/378091. -The files have all been moved to a more appropriate location (in particular the test was moved out of the data directory). BUG=303491 Review URL: https://codereview.chromium.org/290803007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273819 0039d316-1c4b-4281-b951-d872f2087c98
-
vitalybuka@chromium.org authored
BUG=378933 Review URL: https://codereview.chromium.org/306103002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273817 0039d316-1c4b-4281-b951-d872f2087c98
-
tzik@chromium.org authored
BUG=378516 Review URL: https://codereview.chromium.org/304153007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273816 0039d316-1c4b-4281-b951-d872f2087c98
-
kinaba@chromium.org authored
As it was before r272170. BUG=378879 Review URL: https://codereview.chromium.org/309483008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273815 0039d316-1c4b-4281-b951-d872f2087c98
-
hidehiko@chromium.org authored
Currently we only have testing for success case of the manifest file. This CL adds a test case for testing when a file resource is not found, and an entry is not found in the manifest. BUG=370895 TEST=Ran browser_tests --gtest_filter=*IrtManifestFile and trybots. Review URL: https://codereview.chromium.org/303683005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273813 0039d316-1c4b-4281-b951-d872f2087c98
-
sky@chromium.org authored
It now creates a IViewManagerInit, which has the single method Connect to connect to the route. As suggested I disabled all the view_manager_lib_unittests until they are converted to new connection logic. BUG=365012 TEST=covered by tests R=ben@chromium.org Review URL: https://codereview.chromium.org/308803002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273812 0039d316-1c4b-4281-b951-d872f2087c98
-
oshima@chromium.org authored
accelerator_filter_unittest stays in ash because it requires ash. BUG=375534 Review URL: https://codereview.chromium.org/307533007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273811 0039d316-1c4b-4281-b951-d872f2087c98
-
bengr@chromium.org authored
Added a second configuration that can support two http proxies and one https proxy. In the process, added a new DataReductionProxyParams object to encapsulate static configuration details and made DataReductionSettingsAndroid a BrowserKeyedContextService. BUG=370039 Review URL: https://codereview.chromium.org/286013002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273810 0039d316-1c4b-4281-b951-d872f2087c98
-
sugoi@chromium.org authored
BUG=343941 Review URL: https://codereview.chromium.org/303143002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273809 0039d316-1c4b-4281-b951-d872f2087c98
-
pliard@chromium.org authored
GNU Gold was only partially respecting the provided order file mainly due to the lack of the '.text.*' trailing line. BUG=372323 R=pasko@chromium.org Review URL: https://codereview.chromium.org/297063002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273808 0039d316-1c4b-4281-b951-d872f2087c98
-
battre@chromium.org authored
BUG=377338 TBR=sergiu@chromium.org Review URL: https://codereview.chromium.org/308713004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273807 0039d316-1c4b-4281-b951-d872f2087c98
-
battre@chromium.org authored
BUG=367701 TBR=yutak@chromium.org Review URL: https://codereview.chromium.org/301163004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273806 0039d316-1c4b-4281-b951-d872f2087c98
-
battre@chromium.org authored
Fails TouchEditableImplAuraTest.TouchCursorInTextfieldTest on Win7. See http://crbug.com/377561#c4 for details. > Enable touch text selection tests on all Aura platforms > > In order to make touch text selection ready for Windows and other Aura > platforms, a prerequisite is to enable tests. Following tests are > enabled: > - TouchSelectionControllerImplTest in views_unittests; > - TouchEditableImplAuraTest in content_browsertests. > > BUG=377561 > > Review URL: https://codereview.chromium.org/304883002 TBR=mohsen@chromium.org Review URL: https://codereview.chromium.org/304253007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273805 0039d316-1c4b-4281-b951-d872f2087c98
-
battre@chromium.org authored
Disabled the test on all platforms now because it fails on ChromeOS now as well. BUG=375910 TBR=sergiu@chromium.org Review URL: https://codereview.chromium.org/304233008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273803 0039d316-1c4b-4281-b951-d872f2087c98
-
dgozman@chromium.org authored
When docking is possible, but main window is undocked, we show toolbox web contents. This means that undocked DevTools has two web contents at the same time: one in a separate window, and one near the inspected tab. BUG=327641 Review URL: https://codereview.chromium.org/294903014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273802 0039d316-1c4b-4281-b951-d872f2087c98
-
mkearney@chromium.org authored
Review URL: https://codereview.chromium.org/304393003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273801 0039d316-1c4b-4281-b951-d872f2087c98
-
kbr@chromium.org authored
These executables are failing on Windows in Debug mode, very likely because they're missing the Visual Studio runtime DLLs. BUG=378021 TBR=maruel@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/302003006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273800 0039d316-1c4b-4281-b951-d872f2087c98
-
nhiroki@chromium.org authored
'pending version' seems outdated naming and the current spec uses 'installing version' or 'waiting version' instead. This renames them mechanically. Spec: https://slightlyoff.github.io/ServiceWorker/spec/service_worker/ BUG=379012 TEST=compile Review URL: https://codereview.chromium.org/309453002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273799 0039d316-1c4b-4281-b951-d872f2087c98
-
battre@chromium.org authored
Reverting due to failing memory bots, see http://crbug.com/235263#c42 for details. > Add garbage collection for shared extensions on Chrome OS > > Chrome OS specific garbage collection in addition to profile specific > clean up also cleans up shared location but only once regardless number > of logged in users. > > BUG=235263 > TEST=unittest > > Review URL: https://codereview.chromium.org/303693011 TBR=dpolukhin@chromium.org Review URL: https://codereview.chromium.org/306023007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273798 0039d316-1c4b-4281-b951-d872f2087c98
-
nhiroki@chromium.org authored
BUG=n/a TEST=lint Review URL: https://codereview.chromium.org/308663004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273797 0039d316-1c4b-4281-b951-d872f2087c98
-
avi@chromium.org authored
BUG=none TEST=none Review URL: https://codereview.chromium.org/302063003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273796 0039d316-1c4b-4281-b951-d872f2087c98
-
tmdiep@chromium.org authored
This patch enables the following switches for mac: --enable-ephemeral-apps --enable-linkable-ephemeral-apps BUG=375027 TEST=browser_tests, unit_tests Review URL: https://codereview.chromium.org/303053003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273795 0039d316-1c4b-4281-b951-d872f2087c98
-
fukino@chromium.org authored
When Files.app receives 'dragstart', it cancels file drag operation in some situations. In these cases, 'dragend' or other drag-related events won't be dispatched. Missing 'dragend' causes this issue. 'drag' is dispatched only when 'dragstart' is not cancelled, so we can take it as start of user's drag operation. BUG=326981 TEST=manually confirmed Review URL: https://codereview.chromium.org/307863003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273794 0039d316-1c4b-4281-b951-d872f2087c98
-
tapted@chromium.org authored
This removes an aura dependency in webview/web_dialog_view.cc and is a step towards getting the views_examples target compiling on Mac. NativeWidget::GetEventHandler isn't used elsewhere. Pre-Aura Win would use ::DefWindowProc() in WebDialogView::HandleKeyboardEvent(), so NativeWidget feels like the right place for this. BUG=366007 TEST=Just refactoring Review URL: https://codereview.chromium.org/307623002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273793 0039d316-1c4b-4281-b951-d872f2087c98
-
rogerta@chromium.org authored
Once this CL is committed, we need to change the server side config to include new trial types and remove the expid. BUG=None Review URL: https://codereview.chromium.org/300063005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273792 0039d316-1c4b-4281-b951-d872f2087c98
-
msw@chromium.org authored
Get the default command if there was no Linux Aura command. Similar to RenderWidgetHostViewAura::ForwardKeyboardEvent (forwards the raw key event if there is no matching command) TODO(followup): Add more complete GTK command coverage. (Elliot noted this might not be worthwhile at the moment) BUG=377355 TEST=[Shift+]Ctrl+Z invokes Undo/Redo in the Linux Aura omnibox. R=oshima@chromium.org,erg@chromium.org Review URL: https://codereview.chromium.org/307783003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273791 0039d316-1c4b-4281-b951-d872f2087c98
-
hclam@chromium.org authored
This switch is not used. Remove it. Review URL: https://codereview.chromium.org/302633012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273790 0039d316-1c4b-4281-b951-d872f2087c98
-
mattm@chromium.org authored
BUG=378911 Review URL: https://codereview.chromium.org/306923005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273788 0039d316-1c4b-4281-b951-d872f2087c98
-
eroman@chromium.org authored
BUG=378050,245025 Review URL: https://codereview.chromium.org/294393009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273787 0039d316-1c4b-4281-b951-d872f2087c98
-