summaryrefslogtreecommitdiffstats
path: root/chrome
Commit message (Collapse)AuthorAgeFilesLines
* Moving the MHTML API out of experimental and renaming it.jcivelli@chromium.org2011-11-2823-80/+108
| | | | | | | | | | | | Moving the savePageAsMTML API out of experimental and renaming it per Kathy suggestion to pageCapture.saveAsMhtml. BUG=None TEST=The API should still work. Review URL: http://codereview.chromium.org/8682013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111678 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 111668 - Configure flimflam from ONC.thestig@chromium.org2011-11-288-237/+62
| | | | | | | | | | | BUG=chromium-os:19399 TEST=manual Review URL: http://codereview.chromium.org/8429004 TBR=chocobo@chromium.org Review URL: http://codereview.chromium.org/8718006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111677 0039d316-1c4b-4281-b951-d872f2087c98
* WebUI TaskManager: Change margins with the standard width (12px).yoshiki@chromium.org2011-11-281-3/+2
| | | | | | | | | | BUG=none TEST=manual on chromium-os and linux Review URL: http://codereview.chromium.org/8637008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111675 0039d316-1c4b-4281-b951-d872f2087c98
* mac: Disable nacl integration tests.thakis@chromium.org2011-11-281-0/+5
| | | | | | | | | | | | They take over 11h in some runs on the trybots. BUG=105406 TEST=none TBR=ncbray Review URL: http://codereview.chromium.org/8698012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111672 0039d316-1c4b-4281-b951-d872f2087c98
* views: Move button directory to ui/views/controls/.tfarina@chromium.org2011-11-28121-144/+144
| | | | | | | | | | BUG=104039 R=maruel@chromium.org TBR=ben@chromium.org Review URL: http://codereview.chromium.org/8716001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111669 0039d316-1c4b-4281-b951-d872f2087c98
* Configure flimflam from ONC.chocobo@chromium.org2011-11-288-62/+237
| | | | | | | | BUG=chromium-os:19399 TEST=manual Review URL: http://codereview.chromium.org/8429004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111668 0039d316-1c4b-4281-b951-d872f2087c98
* Add custom-appearance to sync sign in buttonsail@chromium.org2011-11-281-2/+4
| | | | | | | | | | | | | | | The sync sign in button has a custom gaia look. When disabled though, the button became unreadable. The problem was due to a change I made to button.css in r109201. I allowed buttons to opt out of the standard button look by specifying class="custom-appearance". This caused the look of the GAIA button to change. To fix this I'm setting class="custom-appearance" to the GAIA button as well. BUG=104176 TEST=Ran without my fix and saw that the disabled sign in button was unreadble. Verified that with my fix the disabled sign in button looked correct. Review URL: http://codereview.chromium.org/8713005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111665 0039d316-1c4b-4281-b951-d872f2087c98
* Extension Settings API: rename it to the Extension Storage API.kalman@chromium.org2011-11-2712-73/+78
| | | | | | | | | BUG=105212 TEST=*ExtensionSetting* (unit_tests, browser_tests) Review URL: http://codereview.chromium.org/8695009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111664 0039d316-1c4b-4281-b951-d872f2087c98
* Revert "Reland "Move a bunch of ChromeOS APIs out of ↵aa@chromium.org2011-11-2731-113/+117
| | | | | | | | | | | | | chrome/browser/extensions.""" This reverts commit fd92fe3ff7c0a4a0da97da00cdf6bd5476c46195. BUG= TEST= Review URL: http://codereview.chromium.org/8713006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111663 0039d316-1c4b-4281-b951-d872f2087c98
* Reland "Move a bunch of ChromeOS APIs out of chrome/browser/extensions.""aa@chromium.org2011-11-2731-117/+113
| | | | | | | | Original CL: http://codereview.chromium.org/8609008 Review URL: http://codereview.chromium.org/8649007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111661 0039d316-1c4b-4281-b951-d872f2087c98
* views: Move textfield directory to ui/views/controls/.tfarina@chromium.org2011-11-2744-49/+49
| | | | | | | | | | BUG=104039 R=maruel@chromium.org TBR=ben@chromium.org Review URL: http://codereview.chromium.org/8713004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111660 0039d316-1c4b-4281-b951-d872f2087c98
* Fix python scripts in src/chrome/maruel@chromium.org2011-11-2769-626/+598
| | | | | | | | | | | | | | | | | | | | Make sure that: - shebang is only present for executable files - shebang is #!/usr/bin/env python - __main__ is only present for executable files - file's executable bit is coherent Also fix EOF LF to be only one. Minor python style fixes. TBR=nirnimesh@chromium.org BUG=105108 TEST= Review URL: http://codereview.chromium.org/8680018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111658 0039d316-1c4b-4281-b951-d872f2087c98
* Fix python scripts in src/chrome/test/functional/maruel@chromium.org2011-11-27106-670/+655
| | | | | | | | | | | | | | | | | | | | Make sure that: - shebang is only present for executable files - shebang is #!/usr/bin/env python - __main__ is only present for executable files - file's executable bit is coherent Also fix EOF LF to be only one. Minor python style fixes. R=nirnimesh@chromium.org BUG=105108 TEST= Review URL: http://codereview.chromium.org/8676019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111657 0039d316-1c4b-4281-b951-d872f2087c98
* views: Move scrollbar and native directories to ui/views/controls/.tfarina@chromium.org2011-11-2714-15/+15
| | | | | | | | | | BUG=104039 R=maruel@chromium.org TBR=ben@chromium.org Review URL: http://codereview.chromium.org/8658010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111655 0039d316-1c4b-4281-b951-d872f2087c98
* Remove experimental.clipboard API in favor of document.execCommand()dcheng@chromium.org2011-11-2715-686/+0
| | | | | | | | | | | This reverts r105855, since event.clipboardData.setData is properly implemented. BUG=102565 TEST=compiles Review URL: http://codereview.chromium.org/8662033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111654 0039d316-1c4b-4281-b951-d872f2087c98
* Updating trunk VERSION from 952.0 to 953.0chrome-release@google.com2011-11-271-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111651 0039d316-1c4b-4281-b951-d872f2087c98
* Wrap NaCl based UI tests with if defined(DISABLE_NACL)noelallen@google.com2011-11-271-0/+5
| | | | | | | | | | | To prevent execution of NaCl based ui_tests, add ifdef around macro which creates tests in ppapi_uitest.cc. BUG= none TEST= build TBR= jasonwkim@google.com git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111649 0039d316-1c4b-4281-b951-d872f2087c98
* Fix reversed logic in disabled tests for CrOSnoelallen@google.com2011-11-271-1/+1
| | | | | | | SEE: http://codereview.chromium.org/8671004/ TRB= bbudge@chromium.org git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111648 0039d316-1c4b-4281-b951-d872f2087c98
* Conditionally test NaCl only when it is not disabled.noelallen@google.com2011-11-271-1/+5
| | | | | | | | | | | | extension_nacl_browsertest.cc was incorrectly added unconditionally. If NaCl was disabled (and untrusted modules are not compiling, or the plugin is unavailable) then these test would fail. TRB= bbudge@chromium.org BUG= http://code.google.com/p/chromium/issues/detail?id=105484 Review URL: http://codereview.chromium.org/8671004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111647 0039d316-1c4b-4281-b951-d872f2087c98
* Adding owners to ChromeOS File Browser source directorykaznacheev@chromium.org2011-11-261-0/+4
| | | | | | | | | | BUG= TEST= Review URL: http://codereview.chromium.org/8702008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111640 0039d316-1c4b-4281-b951-d872f2087c98
* Delete DevToolsAgent::frontendLoaded related plumbingyurys@chromium.org2011-11-262-10/+2
| | | | | | | | | | | | This change depends on the following WebKit change: http://trac.webkit.org/changeset/101166 BUG=100538 TEST=Existing tests Review URL: http://codereview.chromium.org/8658008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111636 0039d316-1c4b-4281-b951-d872f2087c98
* Updating trunk VERSION from 951.0 to 952.0chrome-release@google.com2011-11-261-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111633 0039d316-1c4b-4281-b951-d872f2087c98
* WebSocket Pepper API: in process API implementationtoyoshim@chromium.org2011-11-261-1/+14
| | | | | | | | | | | | | | | This change enable in process Websocket Pepper API. For now, some unit tests are disabled because they need external a WebSocket server. BUG=87310 TEST=ui_tests --gtest_filter='PPAPITest.WebSocket*' Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=111596 Review URL: http://codereview.chromium.org/8558017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111628 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 111618 - Reapply of http://codereview.chromium.org/8632023/noelallen@google.com2011-11-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | The original CL failed on Mac. Avoid references to untrusted.gypi in WebKit Remove include of untrusted.gypi in normal ppapi gyp files to prevent WebKit from depending on NaCl. Refactor PPAPI gyp files to pull out source lists which are shared between trusted and untrusted targets. Fix scons hack which pulls list of sources from GYP so that we can build with scons. This CL should allow us to revert the DEPS change: http://trac.webkit.org/changeset/101011 on the webkit side BUG= none TEST= Tools/Scripts/update-webkit --chromium TRB= dmichael@chromium.org Review URL: http://codereview.chromium.org/8701008 TBR=noelallen@google.com Review URL: http://codereview.chromium.org/8701010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111621 0039d316-1c4b-4281-b951-d872f2087c98
* Mark PanelBrowserTest.AutoResize as flaky on Linux.dcheng@chromium.org2011-11-251-1/+6
| | | | | | | | | | BUG=105445 TEST=trybots TBR=dimich Review URL: http://codereview.chromium.org/8658012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111619 0039d316-1c4b-4281-b951-d872f2087c98
* Reapply of http://codereview.chromium.org/8632023/noelallen@google.com2011-11-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | The original CL failed on Mac. Avoid references to untrusted.gypi in WebKit Remove include of untrusted.gypi in normal ppapi gyp files to prevent WebKit from depending on NaCl. Refactor PPAPI gyp files to pull out source lists which are shared between trusted and untrusted targets. Fix scons hack which pulls list of sources from GYP so that we can build with scons. This CL should allow us to revert the DEPS change: http://trac.webkit.org/changeset/101011 on the webkit side BUG= none TEST= Tools/Scripts/update-webkit --chromium TRB= dmichael@chromium.org Review URL: http://codereview.chromium.org/8701008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111618 0039d316-1c4b-4281-b951-d872f2087c98
* Load mac sandbox definitions from resources instead of the bundle.jochen@chromium.org2011-11-2511-15/+55
| | | | | | | | | | | Also, move all mac sandbox unittests to content BUG=90443 TEST=content_unittests Review URL: http://codereview.chromium.org/8589001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111614 0039d316-1c4b-4281-b951-d872f2087c98
* Move render widget host test to content unittestsjochen@chromium.org2011-11-251-1/+0
| | | | | | | | | BUG=90443 TEST=content_unittests Review URL: http://codereview.chromium.org/8705002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111613 0039d316-1c4b-4281-b951-d872f2087c98
* views: Move tabbed_pane directory to ui/views/controls/.tfarina@chromium.org2011-11-252-2/+2
| | | | | | | | | | BUG=104039 R=maruel@chromium.org TBR=ben@chromium.org Review URL: http://codereview.chromium.org/8658009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111612 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 111606 - Avoid references to untrusted.gypi in WebKitnoelallen@google.com2011-11-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Remove include of untrusted.gypi in normal ppapi gyp files to prevent WebKit from depending on NaCl. Refactor PPAPI gyp files to pull out source lists which are shared between trusted and untrusted targets. Fix scons hack which pulls list of sources from GYP so that we can build with scons. This CL should allow us to revert the DEPS change: http://trac.webkit.org/changeset/101011 on the webkit side BUG= none TEST= Tools/Scripts/update-webkit --chromium Review URL: http://codereview.chromium.org/8632023 TBR=noelallen@google.com Review URL: http://codereview.chromium.org/8700010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111608 0039d316-1c4b-4281-b951-d872f2087c98
* Avoid references to untrusted.gypi in WebKitnoelallen@google.com2011-11-251-1/+1
| | | | | | | | | | | | | | | | | | | | | Remove include of untrusted.gypi in normal ppapi gyp files to prevent WebKit from depending on NaCl. Refactor PPAPI gyp files to pull out source lists which are shared between trusted and untrusted targets. Fix scons hack which pulls list of sources from GYP so that we can build with scons. This CL should allow us to revert the DEPS change: http://trac.webkit.org/changeset/101011 on the webkit side BUG= none TEST= Tools/Scripts/update-webkit --chromium Review URL: http://codereview.chromium.org/8632023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111606 0039d316-1c4b-4281-b951-d872f2087c98
* Move RenderViewHostObserver to content/public/browser/ and put it into the ↵tfarina@chromium.org2011-11-2514-38/+38
| | | | | | | | | | | content namespace. BUG=98716 R=jam@chromium.org Review URL: http://codereview.chromium.org/8676032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111604 0039d316-1c4b-4281-b951-d872f2087c98
* Removing SignalingTask and replace with base::Bind(&WaitableEvent::Signal, ...)dcheng@chromium.org2011-11-256-35/+45
| | | | | | | | | BUG=none TEST=trybots Review URL: http://codereview.chromium.org/8696001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111603 0039d316-1c4b-4281-b951-d872f2087c98
* Disable two tests started crashing after WebKit r101166yurys@chromium.org2011-11-252-2/+4
| | | | | | | | | BUG=105433 TEST=None Review URL: http://codereview.chromium.org/8702013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111600 0039d316-1c4b-4281-b951-d872f2087c98
* Revert r111596 "WebSocket Pepper API: in process API implementation"maruel@chromium.org2011-11-251-14/+1
| | | | | | | | | | | | Broke compile on Linux Builder (dbg)(shared) TBR=toyoshim@chromium.org BUG= TEST= Review URL: http://codereview.chromium.org/8698007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111598 0039d316-1c4b-4281-b951-d872f2087c98
* Move accelerator related files to ui/base/acceleratorstfarina@chromium.org2011-11-2531-39/+39
| | | | | | | | | BUG=104599 R=mazda@chromium.org Review URL: http://codereview.chromium.org/8695005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111597 0039d316-1c4b-4281-b951-d872f2087c98
* WebSocket Pepper API: in process API implementationtoyoshim@chromium.org2011-11-251-1/+14
| | | | | | | | | | | | | | | | | This change enable in process Websocket Pepper API. For now, some unit tests are disabled because they need external a WebSocket server. These disabled tests run manually with external pywebsocket and --gtest_also_run_disabled_tests flag as follows. These tests will enabled in a few days. TBR=dmichael@chromium.org BUG=87310 TEST=ui_tests --gtest_filter='PPAPITest.WebSocket*' Review URL: http://codereview.chromium.org/8558017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111596 0039d316-1c4b-4281-b951-d872f2087c98
* [cros,login] Prevent WebUI race, when network drop-down is hided.altimofeev@chromium.org2011-11-251-6/+8
| | | | | | | | | | | Also prevents useless network drop-down re-creation. BUG=chromium-os:21398 TEST="Cannot call method 'setTitle' of null" is not presented in the logs. Review URL: http://codereview.chromium.org/8662005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111592 0039d316-1c4b-4281-b951-d872f2087c98
* Remove some unused code.vollick@chromium.org2011-11-251-4/+0
| | | | | | | | | | | Removes an ifdef TOUCH_UI that was supposed to be removed with http://codereview.chromium.org/8461017/ BUG=None TEST=None Review URL: http://codereview.chromium.org/8660005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111591 0039d316-1c4b-4281-b951-d872f2087c98
* Reland 111519: Remove default plug-in on Mac, Gtk and Aura.bauerb@chromium.org2011-11-2510-1141/+14
| | | | | | | | | | | | Aura doesn't do plug-ins, and Mac and Gtk already use in-renderer placeholders. TBR=jam@chromium.org BUG=62079 TEST=none Review URL: http://codereview.chromium.org/8689001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111590 0039d316-1c4b-4281-b951-d872f2087c98
* Clean up plug-in placeholders:bauerb@chromium.org2011-11-2514-224/+488
| | | | | | | | | | | | | | * Add separate class for missing plug-in placeholder, and factor out a common base class * Move plug-in related classes to plugins/ subdirectory * Move custom menu command IDs to a separate header file. TBR=darin@chromium.org BUG=62079 TEST=none Review URL: http://codereview.chromium.org/8461011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111589 0039d316-1c4b-4281-b951-d872f2087c98
* Adding `content_security_policy` to Speech Input API sample.mkwst@chromium.org2011-11-257-41/+55
| | | | | | | | | | | As a drive-by, this CL also regenerates the `experimental.settings` docs, which someone apparently forgot to do after committing. :) BUG=92644 TEST= Review URL: http://codereview.chromium.org/8698003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111588 0039d316-1c4b-4281-b951-d872f2087c98
* [cros] Profile image loaded from file is re-used if subsequent download fails.ivankr@chromium.org2011-11-251-5/+7
| | | | | | | | | BUG=chromium-os:23237 TEST=Manual Review URL: http://codereview.chromium.org/8698002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111587 0039d316-1c4b-4281-b951-d872f2087c98
* Mark SafeBrowsingServiceTest.SafeBrowsingSystemTest as flakyglider@chromium.org2011-11-251-7/+2
| | | | | | | | TBR=thestig BUG=96459 Review URL: http://codereview.chromium.org/8704001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111582 0039d316-1c4b-4281-b951-d872f2087c98
* Updating trunk VERSION from 950.0 to 951.0chrome-release@google.com2011-11-251-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111579 0039d316-1c4b-4281-b951-d872f2087c98
* Re-enable several SSL UI tests now that the root bug should be fixed.rsleevi@chromium.org2011-11-251-12/+6
| | | | | | | | | BUG=18626, 47170, 49377, 68448, 70216, 77374 TEST=unittests Review URL: http://codereview.chromium.org/8632004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111569 0039d316-1c4b-4281-b951-d872f2087c98
* Move P2P unit tests to content_unittestsjochen@chromium.org2011-11-251-10/+0
| | | | | | | | | | | | Also fix uninitialized memory in the jingle thread wrapper BUG=10502 TEST=content_unittests, valgrind is happy Review URL: http://codereview.chromium.org/8689014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111568 0039d316-1c4b-4281-b951-d872f2087c98
* Add about:flags entry for enabling gamepad.scottmg@chromium.org2011-11-242-0/+13
| | | | | | | | | BUG=79050 Review URL: http://codereview.chromium.org/8679023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111562 0039d316-1c4b-4281-b951-d872f2087c98
* Remove 1 static initializer and some unused code.thakis@chromium.org2011-11-241-27/+11
| | | | | | | | | | BUG=94925 TEST=none Review URL: http://codereview.chromium.org/8689010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111561 0039d316-1c4b-4281-b951-d872f2087c98
* Remove 4 static initializers.thakis@chromium.org2011-11-242-15/+10
| | | | | | | | | | | | Most of them caused by gcc 4.4 being not sufficiently smart. BUG=94925 TEST=none TBR=akalin Review URL: http://codereview.chromium.org/8690005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111560 0039d316-1c4b-4281-b951-d872f2087c98