summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Pick off the lowest hanging fruits in removing the chrome includes from ↵jam@chromium.org2011-04-2929-303/+122
| | | | | | | | content\browser. I moved clipboard_dispatcher.* and content_restriction.h which should have moved originally. Review URL: http://codereview.chromium.org/6893122 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83517 0039d316-1c4b-4281-b951-d872f2087c98
* Hide Media Player video controls on inactivity.kaznacheev@chromium.org2011-04-291-5/+101
| | | | | | | | | BUG=chromium-os:3831 TEST=Manual Review URL: http://codereview.chromium.org/6902151 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83516 0039d316-1c4b-4281-b951-d872f2087c98
* Added "Exit full screen" button to Chrome OS Media Player.kaznacheev@chromium.org2011-04-292-0/+16
| | | | | | | | | | | | The new button is made out of the existing "full screen" button with simple copy/pastes so it needs professional polish. BUG=chromium-os:4913 TEST=Manual Review URL: http://codereview.chromium.org/6905126 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83515 0039d316-1c4b-4281-b951-d872f2087c98
* Mac base cleanup.avi@chromium.org2011-04-295-44/+38
| | | | | | | | | | | Move the sole inhabitant of base/foundation_utils_mac.h into base/mac/foundation_util.h|mm. BUG=none TEST=none Review URL: http://codereview.chromium.org/6904128 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83514 0039d316-1c4b-4281-b951-d872f2087c98
* Fix last two failing browser tests on Chrome OSrkc@chromium.org2011-04-295-15/+32
| | | | | | | | | | | | | The bidi checker test was using a bad path to locate the js file, fixed that to always find it relative to src root (there is a corresponding CL on Chromium OS to fix the e-build to copy the js over to the test deps). The plugin test was failing for two reasons, one the plugin not being available (again, corresponding CL on chromium-os tracker to fix that in the e-build), second is Chrome being symlinked. I am not completely sure why this breaks this test, but the executable being in the same directory as the rest of the test files is a more accurate test environment anyway, hence copying it instead of symlinking. R=zelidrag@chromium.org BUG=chromium-os:13857 TEST=Ran the full browsertest suite, all passed Review URL: http://codereview.chromium.org/6904073 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83513 0039d316-1c4b-4281-b951-d872f2087c98
* Fix inverted logic for aborting out of the running as root check.mbelshe@chromium.org2011-04-291-1/+1
| | | | | | | | | | | We want to skip the check if a user data dir is specified, not if one is not specified. BUG=none TEST=none Review URL: http://codereview.chromium.org/6901054 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83511 0039d316-1c4b-4281-b951-d872f2087c98
* gtk: Get rid of GtkThemeService::UseGtkTheme() function.tfarina@chromium.org2011-04-293-13/+3
| | | | | | | | | | | | | (Note: This was a TODO for akalin). BUG=None TEST=None R=akalin@chromium.org,evan@chromium.org Review URL: http://codereview.chromium.org/6883258 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83510 0039d316-1c4b-4281-b951-d872f2087c98
* Marked ExtensionLoadTest.Test as flaky on Linux x64.joaodasilva@chromium.org2011-04-291-1/+8
| | | | | | | | | BUG=80961 TEST=ExtensionLoadTest.Test Review URL: http://codereview.chromium.org/6883262 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83506 0039d316-1c4b-4281-b951-d872f2087c98
* Prevent asking for authorization to run whitelisted plugins.joaodasilva@chromium.org2011-04-293-0/+48
| | | | | | | | | BUG=80737 TEST=Whitelist a plugin (by adding it to the EnabledPlugins policy) that is outdated or that required authorization to run (e.g. Java). When it is whitelisted, it won't ask for permission to run. Review URL: http://codereview.chromium.org/6883237 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83505 0039d316-1c4b-4281-b951-d872f2087c98
* Added policy to allow plugins that require authorization to run.joaodasilva@chromium.org2011-04-2915-33/+88
| | | | | | | | | BUG=80818 TEST=Enable the AlwaysAuthorizePlugins policy, and plugins that require authorization are always allowed. Otherwise, the user is asked for authorization. Review URL: http://codereview.chromium.org/6893092 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83504 0039d316-1c4b-4281-b951-d872f2087c98
* Sign-in button stays gray after invalid loginglotov@google.com2011-04-291-1/+7
| | | | | | | | | BUG=chromium-os:12838 TEST=wysiwyg Review URL: http://codereview.chromium.org/6893103 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83503 0039d316-1c4b-4281-b951-d872f2087c98
* Use the IAttachmentExecute service to set the Zone.Identifier stream,joaodasilva@chromium.org2011-04-294-41/+93
| | | | | | | | | | | | | | | | | when available. This is used to mark files as untrusted, because they were downloaded from the internet. The DownloadTest.CheckInternetZone browser test was failing previously because the Zone.Identifier stream created by the IAttachmentExecute service uses \r\n for newlines, and the test was checking for \n. See also http://codereview.chromium.org/590001, which this should close. BUG=5719 TEST=DownloadTest.CheckInternetZone Review URL: http://codereview.chromium.org/6880236 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83502 0039d316-1c4b-4281-b951-d872f2087c98
* Exit full screen on Escape in Chrome OS media player.kaznacheev@chromium.org2011-04-291-0/+19
| | | | | | | | | | | While at it, also implemented play/pause on spacebar. BUG=chromium-os:2958 TEST=Manual test Review URL: http://codereview.chromium.org/6880273 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83501 0039d316-1c4b-4281-b951-d872f2087c98
* Updating trunk VERSION from 751.0 to 752.0chrome-release@google.com2011-04-291-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83496 0039d316-1c4b-4281-b951-d872f2087c98
* Fix error reporting in the test server.mnissler@chromium.org2011-04-291-8/+5
| | | | | | | | | | | | We were still using the error protobuf field in the response message, but this has meanwhile been replace by HTTP status codes. BUG=none TEST=toy server successfully generates error response upon invalid/unspecified DM tokens in policy requests Review URL: http://codereview.chromium.org/6883224 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83494 0039d316-1c4b-4281-b951-d872f2087c98
* Correctly reload history view after deleting the last itemjochen@chromium.org2011-04-292-2/+2
| | | | | | | | | BUG=71851 TEST=as described in the issue Review URL: http://codereview.chromium.org/6880308 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83493 0039d316-1c4b-4281-b951-d872f2087c98
* Extend the suppression for bug 79794 (leaks in ↵glider@chromium.org2011-04-291-8/+4
| | | | | | | | | | AutofillMetrics::LogTypeQualityMetric) BUG=79794 TBR=isherman Review URL: http://codereview.chromium.org/6902148 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83492 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress leaks from skia::PlatformCanvas (issue 80836)glider@chromium.org2011-04-292-19/+12
| | | | | | | | BUG=80836 TBR=evan Review URL: http://codereview.chromium.org/6902146 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83491 0039d316-1c4b-4281-b951-d872f2087c98
* Mark AutocompleteEditViewTest.PasteReplacingAll as flaky.phajdan.jr@chromium.org2011-04-291-1/+2
| | | | | | | | | TBR=suzhe BUG=80934 Review URL: http://codereview.chromium.org/6904119 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83490 0039d316-1c4b-4281-b951-d872f2087c98
* Linux: clean up the usage of "use_cups" gyp switch:phajdan.jr@chromium.org2011-04-295-39/+70
| | | | | | | | | | | | | | | | | This CL removes duplication and fixes a build error on system with no CUPS. It uses cups-config instead of hardcoding flags. Also, it removes a superfluous dependency on gcrypt from chrome_browser.gypi. printing uses gcrypt explicitly, but chrome/browser doesn't. It was just blindly copy-pasted. I just extracted libgcrypt target to build/linux/system.gyp, and switched to libgcrypt-config instead of hardcoding flags. BUG=none Review URL: http://codereview.chromium.org/6883221 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83489 0039d316-1c4b-4281-b951-d872f2087c98
* Field trials are currently implemented (commonly) using a static variable ↵rtenneti@chromium.org2011-04-2910-23/+288
| | | | | | | | | | | | | | | | | | | | that is set once, the first time it is necessary to decide if there is an experiment by a given name active. With this change the field-test system can "push" a group that is selected for the given field trial (field test) if/when an experiment does arrive. This change implements a simple IPC notification of the result of a FieldTrial setting being sent to any previously started renderers. BUG=16494 TEST=field trial tests R=jar Review URL: http://codereview.chromium.org/6883029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83488 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: make --debug-devtools-frontend point to the front-end folder.pfeldman@chromium.org2011-04-293-5/+15
| | | | | | Review URL: http://codereview.chromium.org/6903107 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83486 0039d316-1c4b-4281-b951-d872f2087c98
* Remove all TODO(tim):deprcecated and clean up all the remnants of syncer ↵lipalani@chromium.org2011-04-2918-1615/+1526
| | | | | | | | | | | thread2. BUG= TEST= Review URL: http://codereview.chromium.org/6883210 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83485 0039d316-1c4b-4281-b951-d872f2087c98
* Remove ChromeURLRequestContext from content/.willchan@chromium.org2011-04-2927-121/+190
| | | | | | | | | | | | Takes the last remaining uses and kills them, or moves them into ResourceContext. Some of the additions to ResourceContext don't belong there either and will need to be removed. BUG=77086,78596 TEST=none Review URL: http://codereview.chromium.org/6880263 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83483 0039d316-1c4b-4281-b951-d872f2087c98
* Do not handle mouse event in lock window nor propagage to child.oshima@google.com2011-04-291-3/+7
| | | | | | | | | BUG=none TEST=lock screen and click menu at right corner. Review URL: http://codereview.chromium.org/6893108 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83482 0039d316-1c4b-4281-b951-d872f2087c98
* Don't show error message for empty password.oshima@google.com2011-04-291-0/+3
| | | | | | | | | BUG=chromium-os:11597 TEST=lock screen and hit enter w/o password. It shouldn't show message bubble. Review URL: http://codereview.chromium.org/6883247 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83481 0039d316-1c4b-4281-b951-d872f2087c98
* Add back PageCyclerExtensionTest::SetUp with a comment explaining its purpose.mpcomplete@chromium.org2011-04-291-0/+4
| | | | | | | | | | | | | Removing it caused a regression where the test no longer ran with extensions installed. BUG=no TEST=no Review URL: http://codereview.chromium.org/6903128 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83478 0039d316-1c4b-4281-b951-d872f2087c98
* Roll DEPS for gyp make generator updates.mmoss@chromium.org2011-04-291-1/+1
| | | | | | | | | BUG= TEST=Linux compiles don't timeout after starting multiple links. Review URL: http://codereview.chromium.org/6903125 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83477 0039d316-1c4b-4281-b951-d872f2087c98
* Update expectations to green things up until the next roll.dpranke@google.com2011-04-291-1/+8
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83476 0039d316-1c4b-4281-b951-d872f2087c98
* Print Preview: Disabling/Enabling elements when the preview is being updated ↵dpapad@chromium.org2011-04-293-117/+134
| | | | | | | | | | | | | | | (again). Initial attempt http://codereview.chromium.org/6900036/. During rendering the preview the user should not be able to change any print settings. After the preview is generated only those settings that were enabled in the first place should be re-enabled, without re-querying the printer. Also in case the preview fails (for example the pdf viewer plugin is not available) the controls should be disabled. BUG=NONE TEST=In the print preview tab, change any setting that requires rerendering, the contols should be disabled until the preview is updated. Review URL: http://codereview.chromium.org/6903126 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83475 0039d316-1c4b-4281-b951-d872f2087c98
* gtk: Replace most of the calls from UseGtkTheme() to UsingNativeTheme().tfarina@chromium.org2011-04-2919-45/+48
| | | | | | | | | | | | | (Note: This is a TODO for akalin). BUG=None TEST=None R=akalin@chromium.org,evan@chromium.org Review URL: http://codereview.chromium.org/6880301 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83474 0039d316-1c4b-4281-b951-d872f2087c98
* Sync: Simplify and fix the layout of the captcha UI in the login page.jhawkins@chromium.org2011-04-292-29/+19
| | | | | | | | | | | BUG=80529 TEST=none R=csilv@chromium.org Review URL: http://codereview.chromium.org/6903130 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83471 0039d316-1c4b-4281-b951-d872f2087c98
* Cleanup: Remove more dead printing code.thestig@chromium.org2011-04-292-26/+4
| | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/6904082 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83470 0039d316-1c4b-4281-b951-d872f2087c98
* Fix one more time the linux tests, in other words giving up on improving the ↵cpu@chromium.org2011-04-291-10/+14
| | | | | | | | tests TBR=brettw git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83469 0039d316-1c4b-4281-b951-d872f2087c98
* Add new enum values to GetUpdatesSource. The production server will probablynick@chromium.org2011-04-292-3/+20
| | | | | | | | | | | | not support these for another week. BUG=None TEST=proto only changes, trybots should suffice Review URL: http://codereview.chromium.org/6901103 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83468 0039d316-1c4b-4281-b951-d872f2087c98
* Add native Panel implementation wireframe for OSX.dimich@chromium.org2011-04-2910-5/+810
| | | | | | Review URL: http://codereview.chromium.org/6899050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83467 0039d316-1c4b-4281-b951-d872f2087c98
* Fix disabling to test on OSX.zea@chromium.org2011-04-291-1/+1
| | | | | | TBR=dtseng@chromium.org git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83466 0039d316-1c4b-4281-b951-d872f2087c98
* Parse Windows mouse drag events.msw@chromium.org2011-04-291-1/+7
| | | | | | | | | BUG=72040 TEST=Mouse moving & dragging on Windows. Review URL: http://codereview.chromium.org/6883241 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83465 0039d316-1c4b-4281-b951-d872f2087c98
* Cleanup: Do not pass the unused document_cookie in the "printing done" IPC ↵thestig@chromium.org2011-04-295-12/+5
| | | | | | | | message. Review URL: http://codereview.chromium.org/6901104 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83464 0039d316-1c4b-4281-b951-d872f2087c98
* Cleanup: Simplify the Linux proxy options code.thestig@chromium.org2011-04-291-62/+20
| | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/6902124 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83463 0039d316-1c4b-4281-b951-d872f2087c98
* Enable some pyauto notification tests. Wait for the notifications ondisplaykkania@chromium.org2011-04-294-56/+61
| | | | | | | | | | callback to be invoked before proceeding with the test. BUG=66072, 80510 TEST=none Review URL: http://codereview.chromium.org/6880223 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83462 0039d316-1c4b-4281-b951-d872f2087c98
* Disable SettingsWebUITest.TestRefreshStaysOnCurrentPagedtseng@chromium.org2011-04-291-1/+1
| | | | | | TBR=dtseng git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83461 0039d316-1c4b-4281-b951-d872f2087c98
* Address some style nits with Autofill metricsisherman@chromium.org2011-04-299-244/+325
| | | | | | | | | | | Addressing Jim's nits from http://codereview.chromium.org/6820062/ BUG=none TEST=none Review URL: http://codereview.chromium.org/6897030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83459 0039d316-1c4b-4281-b951-d872f2087c98
* fix failing linux tests.cpu@chromium.org2011-04-291-0/+4
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83458 0039d316-1c4b-4281-b951-d872f2087c98
* [Extension] Remove concept of initial incognito stateakalin@chromium.org2011-04-2913-94/+45
| | | | | | | | | | | | | | The concept was added to support syncing. Instead, made SetIsIncognitoEnabled() work regardless of whether or not the extension is installed. BUG=72659 TEST= Review URL: http://codereview.chromium.org/6904102 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83457 0039d316-1c4b-4281-b951-d872f2087c98
* [Sync] The Great Extension/App Sync Splitakalin@chromium.org2011-04-2910-23/+403
| | | | | | | | | | | | | | | | Create separate App model associator and change processor. This is a prerequisite for handling app-specific properties that need to be synced. A future CL will get rid of the ExtensionSyncTraits class, cementing the difference between extension sync and app sync. BUG=72659 TEST= Review URL: http://codereview.chromium.org/6880284 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83456 0039d316-1c4b-4281-b951-d872f2087c98
* Image burntbarzic@chromium.org2011-04-291-0/+99
| | | | | | Review URL: http://codereview.chromium.org/6904112 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83455 0039d316-1c4b-4281-b951-d872f2087c98
* Print Preview: Changing UI to match the new mockdpapad@chromium.org2011-04-296-700/+616
| | | | | | | | | BUG=NONE TEST=Open the print preview tab, a new UI should be displayed. Review URL: http://codereview.chromium.org/6905041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83454 0039d316-1c4b-4281-b951-d872f2087c98
* history: Make QueryNodeList more readable.tfarina@chromium.org2011-04-291-24/+46
| | | | | | | | | | | | | | | | | | - Group all the overridden methods. - Add OVERRIDE to them. - Move the implementation out of the class declaration. - Fix the order to match with our style. - Use STLDeleteElements. - Add DISALLOW_COPY_AND_ASSIGN. BUG=68682 TEST=None R=sky@chromium.org Review URL: http://codereview.chromium.org/6904087 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83453 0039d316-1c4b-4281-b951-d872f2087c98
* Move jstemplate from chrome/third_party to third_party.thakis@chromium.org2011-04-28122-110/+110
| | | | | | | | | | | | | | | | All third party libraries should be in third_party. The presubmit check complains about jstemplate's README.chromium being nonstandard; I will fix that in a follow-up. The interesting changes are to the .grd file and the .py file. BUG=none TEST=none Review URL: http://codereview.chromium.org/6901102 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83452 0039d316-1c4b-4281-b951-d872f2087c98