| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
A hosted app can have a 'background_page' if it has 'background' 'permission'.
The 'background_page' will launch immediately after the app is installed.
BUG=77718
TEST=AppBackgroundPageApiTest.ManifestBackgroundPage, and existing tests.
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=81438
Review URL: http://codereview.chromium.org/6708100
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81467 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
Revert 81438 - apps: Add 'background_page' support for hosted apps.A hosted app can have a 'background_page' if it has 'background' 'permission'.The 'background_page' will launch immediately after the app is installed.BUG=77718TEST=AppBackgroundPageApiTest.ManifestBackgroundPage, and existing tests.Review URL: http://codereview.chromium.org/6708100
TBR=sadrul@chromium.org
Review URL: http://codereview.chromium.org/6834035
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81442 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
A hosted app can have a 'background_page' if it has 'background' 'permission'.
The 'background_page' will launch immediately after the app is installed.
BUG=77718
TEST=AppBackgroundPageApiTest.ManifestBackgroundPage, and existing tests.
Review URL: http://codereview.chromium.org/6708100
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81438 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This is a super early first cut of global menu support. It works by creating a GtkMenuBar inside chrome, attaching it to the widget hierarchy and then never showing it. This is sufficient for global menu support to detect the menu, at least on the Natty betas.
There's a lot to do before this is considered done. I haven't added Bookmark and History menus, which will need custom handling to keep state up to date with the main window. Some items may need to be moved from one menu to another to fit with Linux conventions.
Contains a bunch of new strings for global menu support. These need to go in before the M12 branch point. (I can iterate on the design afterwards; strings need translation.)
BUG=30213
TEST=Open a window on Unity. A minimal menu is in the menu bar.
Review URL: http://codereview.chromium.org/6812037
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81170 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
Note that they aren't really enabled on a platform until an implementation that
returns a non-empty vector from WebClipboard::readAvailableTypes is checked.
BUG=75237
TEST=none
Review URL: http://codereview.chromium.org/6813053
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81002 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
on ChromeOS.
After this change, on ChromeOS we will use the TPM to generate keys
for keygen tags in forms. NSS will also have opencryptoki loaded so
it can talk to the TPM.
BUG=chromium-os:12416, chromium-os:12417
TEST=Generated keys on a ChromeOS device.
Review URL: http://codereview.chromium.org/6667020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80806 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
We lost this battle. We had to step back from requirement the renegotiation
extension, even on sites which we know support it, because of the number of
MITM proxies.
Since there doesn't seem to be any way forward, this change removes the code.
BUG=55410
TEST=compiles
Review URL: http://codereview.chromium.org/6792032
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80513 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
BUG=none
TEST=none
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=79931
Review URL: http://codereview.chromium.org/6708059
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80120 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
force it to run in-process.
TEST=manual
BUG=none
Review URL: http://codereview.chromium.org/6780026
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80071 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This CL integrates the work that has been done on the DOM based login screen with the work on refactoring the login infrastructure. This is a very preliminary CL and is intended to review the logistics of integration, so there are many things with the DOM screen itself are broken. The intent is to address any issues with the seam between the DOM login code and existing infrastructure. Issues related to functionality of the DOM login screen or integration with chromiumos will be addressed in following CLs. This CL is only included in touchui==1 and chromeos==1 builds and NOT the default login screen.
This CL has been tested on the desktop by adding --login-manger --login_screen=login --dom-login --stub-cros to cause chromium to come up with the login screen.You may need to use --login-profile also. It is known to be broken in chromiumos, due to integration issues with the window manager. This is currently being investigated.
I have added in a command line flag "--dom-login" that allows for using the DOM based login screen instead of the views based one. This screen is not very functional at the moment. The WebUI handling layer needed to be rewritten, so we are no longer using AuthenticatorFacade. There is an issue with commands not making it down to the login infrastucture layer at the moment, so shutting down and logging in off the record hang.
The support for chrome://login-container has been removed, because the login page's DOM no longer workers as a standalone window since it needs the login infrastructure. In addition you can access the login screen for development on the desktop as mentioned before, so it isn't needed.
Patch from Ryan Harrison <rharrison@chromium.org>
BUG=none
TEST=manual
Review URL: http://codereview.chromium.org/6729018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79993 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
SafeBrowsing enabled."
This reverts commit e41059f0bef15b2f5298c225dfab6f6929be6ddc.
The change broke all of browser tests on ChromiumOS dbg bot:
Example: http://build.chromium.org/p/tryserver.chromium/builders/linux_chromeos/builds/5925/steps/browser_tests/logs/SwitchLanguage
[20793:20793:0330/233023:13949359567:FATAL:pref_service.cc(304)] Check failed: false. Trying to read an unregistered pref: user_experience_metrics.reporting_enabled
Backtrace:
base::debug::StackTrace::StackTrace() [0x130bc1d]
logging::LogMessage::~LogMessage() [0x131e20d]
PrefService::GetBoolean() [0xa72628]
SafeBrowsingService::Start() [0xae78a2]
SafeBrowsingService::Initialize() [0xae7efe]
ResourceDispatcherHost::Initialize() [0x2fb4ca7]
BrowserProcessImpl::CreateResourceDispatcherHost() [0xd98d0b]
BrowserProcessImpl::resource_dispatcher_host() [0xd98dd1]
ExtensionService::Init() [0x9085e6]
ProfileImpl::InitExtensions() [0xf646ed]
ProfileManager::AddProfile() [0xa9151a]
ProfileManager::GetProfile() [0xa916c1]
ProfileManager::GetDefaultProfile() [0xa91d26]
(anonymous namespace)::CreateProfile() [0x11a37d9]
BrowserMain() [0x11a69e5]
InProcessBrowserTest::SetUp() [0x129565f]
testing::internal::HandleSehExceptionsInMethodIfSupported<>() [0x146634b]
testing::internal::HandleExceptionsInMethodIfSupported<>() [0x146daf8]
testing::Test::Run() [0x1460af9]
testing::TestInfo::Run() [0x14644c0]
testing::TestCase::Run() [0x1464613]
testing::internal::UnitTestImpl::RunAllTests() [0x1465168]
testing::internal::HandleSehExceptionsInMethodIfSupported<>() [0x1466841]
testing::internal::HandleExceptionsInMethodIfSupported<>() [0x146d952]
testing::UnitTest::Run() [0x145de1b]
base::TestSuite::Run() [0x13922b2]
main [0x71f869]
0x2b6ae16a91
TBR=bryner
BUG=chromium-os:13699
TEST=ran safe_browsing_tests
Review URL: http://codereview.chromium.org/6737023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79969 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6708059
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79931 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
And also read policy back from session_manager into CloudPolicyCache, but there are no consumers of those values yet.
BUG=chromium-os:11258
TEST=UserPolicyCacheTest.*; DevicePolicyCacheTest.*
Review URL: http://codereview.chromium.org/6705031
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79677 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
about:net-internals page:
- Add a new tab to the about:net-internals page.
- Add a preference item to persist user's choice.
- Remove the command line switch --disable-enforced-throttling.
- Make throttling feature off by default for now.
This is 95% based on yzshen@chromium.org's patch
http://codereview.chromium.org/6286001/ which was never landed. The
changes that have been made from that patch are mostly cosmetic, apart
from updating it to match the codebase (the patch was prepared ~2
months ago) and responding to eroman@'s initial round of code review
comments.
BUG=66062
TEST=Make sure the checkbox on about:net-internals > HTTP Throttling is checked.
(1) Type in the addresss bar a URL which is expected to return 5XX.
(2) Keep clicking the "reload" button.
(3) After a few clicks, Chrome displays an error page explaining why a net::ERR_TEMPORARILY_THROTTLED error occurs.
Make sure the checkbox on about:net-internals > HTTP Throttling is unchecked.
Following step (1) and (2) described above won't result in a net::ERR_TEMPORARILY_THROTTLED error page.
Review URL: http://codereview.chromium.org/6677085
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79455 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
Added a command-line switch: --enable-ip-pooling
BUG=42669
TEST=SpdySessionTest.IPPool*
Review URL: http://codereview.chromium.org/6594116
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79372 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
BUG=none
TEST=none
R=ben@chromium.org
Review URL: http://codereview.chromium.org/6725027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79216 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
(note this is a resubmit of Issue 6718004)
BUG=76919, 76976
TEST=none
Review URL: http://codereview.chromium.org/6716024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79086 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This change merges devtools_resources.pak into resources.pak and
puts the code to load files from disk behind a command line switch.
If --debug-devtools is passed on the command line, we enable the code
to load from disk (so the developer can make changes to the .js
files without having to recompile or restart the browser).
I also tried to make sure we no longer include the resources directory
in release packages, but I probably missed something.
This time, make sure to include the devtools_resources.pak in
Chromium.app on OSX.
BUG=35793
TBR=pfeldman
Review URL: http://codereview.chromium.org/6708093
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79038 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
interactive_ui_tests in debug appear to be broken.
This reverts commit r78949.
TBR=pfeldman
Review URL: http://codereview.chromium.org/6675018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78954 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This change merges devtools_resources.pak into resources.pak and
puts the code to load files from disk behind a command line switch.
If --debug-devtools is passed on the command line, we enable the code
to load from disk (so the developer can make changes to the .js
files without having to recompile or restart the browser).
I also tried to make sure we no longer include the resources directory
in release packages, but I probably missed something.
BUG=35793
Review URL: http://codereview.chromium.org/6670072
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78949 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This option is off by default. This CL also removes the command line flag and
the about:flags strings.
XIB changes:
* Add a new menu item and separator.
* Wire up the menu item to -[AppController toggleConfirmToQuit:]
BUG=60591
TEST=Go to Chromium menu. See "Warn Before Quitting (Cmd+Q)". Select it to enable/disable. Feature works as before, respecting this flag.
Review URL: http://codereview.chromium.org/6708058
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78920 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
BUG=
TEST=
Review URL: http://codereview.chromium.org/6665057
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78904 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
BUG=30572
TEST=make sure tab selection isn't broke. You should also be able to
control click to toggle, shift-click to reset the selection, and
control-shift to add to the selection.
R=ben@chromium.org
Review URL: http://codereview.chromium.org/6714016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78884 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This is in preparation of moving app/gfx/gl to ui/gfx/gl.
All of the switches in app_switches are GL related.
Removed many includes that were unnecessary.
BUG=none
TEST=trybots
Review URL: http://codereview.chromium.org/6685089
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78875 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
Code is copied from touchntp, minus standalone hack.
BUG=76706
TEST=manual
Review URL: http://codereview.chromium.org/6708032
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78783 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
BUG=50307,72362,76702
TEST=three-finger-swipe down and Window->Tab Overview both open tab overview mode
Review URL: http://codereview.chromium.org/6459009
TBR=thakis@chromium.org
Review URL: http://codereview.chromium.org/6708033
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78737 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=60822
TEST=none
Review URL: http://codereview.chromium.org/6708004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78634 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6693032
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78450 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This CL adds experimental support for letting installed apps request isolated
storage in their manifest. An isolated app will have its own cookie store
that is not shared with other apps or normal pages, even if they share an
origin. The feature is currently behind a --enable-experimental-app-manifests
flag.
BUG=69335
TEST=ExtensionManifestTest.IsolatedApps
TEST=IsolatedAppApiTest.CookieIsolation*
Review URL: http://codereview.chromium.org/6201005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78301 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
to support
more than just PDF files.
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=78231
Review URL: http://codereview.chromium.org/6685014
Patch from abodenha1 <abodenha@chromium.org>.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78271 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
print dialog to support
more than just PDF files.
Review URL: http://codereview.chromium.org/6685014
Patch from abodenha1 <abodenha@chromium.org>.
TBR=scottbyer@chromium.org
Review URL: http://codereview.chromium.org/6698038
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78234 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
to support
more than just PDF files.
Review URL: http://codereview.chromium.org/6685014
Patch from abodenha1 <abodenha@chromium.org>.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78231 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
sync and using the old default password store by default. This is temporary
until we're able to land a real fix for the deadlock.
BUG=72499
TEST=Run chrome on linux, see passwords get synced.
Review URL: http://codereview.chromium.org/6696009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78170 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
a bunch of work to do:
. Rendering of multiple selection isn't right.
. The dragged representation only renders one tab.
And I'm sure a slew of other little things, but this is a good point
to land what I've done.
BUG=30572
TEST=none, just make sure tab selection isn't broken.
Review URL: http://codereview.chromium.org/6685007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78023 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
| |
TBR=avi
Review URL: http://codereview.chromium.org/6681022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77927 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
There are probably a few more bits and pieces that can be removed, but I think this is the majority of it.
BUG=51934
Review URL: http://codereview.chromium.org/6576020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77888 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This is revert of 76302 but git revert seems to insert some conflicting changes,
so making it a separate checkin.
modified: chrome/common/chrome_switches.cc
modified: chrome/common/chrome_switches.h
BUG=73936
TEST=none
Review URL: http://codereview.chromium.org/6685017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77880 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
| |
TBR=avi
Review URL: http://codereview.chromium.org/6686002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77868 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
Use --disable-javascript-i18n-api to disable it.
BUG=28604
Review URL: http://codereview.chromium.org/6656028
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77701 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
This removes support for pepper v1 trusted plugins.
TEST=pepper v2 plugin runs, npapi plugin runs, trybots
BUG=none
Review URL: http://codereview.chromium.org/6646025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77568 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
remaining Chrome specific bit in ChildProcessHost can be taken out.
Review URL: http://codereview.chromium.org/6648019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77479 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=75320
TEST=none
Review URL: http://codereview.chromium.org/6650007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77404 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=75233
TEST=none
Review URL: http://codereview.chromium.org/6626067
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77355 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
disable switch.
Since currently on download url is checked, this only enables download url checks.
Because the safe browsing server used by safe_browsing_test.cc does not understand the new list for safebrowsing download, we have to disable the download protect in that test.
TEST=safe browsing related tests stay green.
BUG=60822
Review URL: http://codereview.chromium.org/6611006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77297 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
compositor layer tree.
Intentionally did not add a flag for compositor-layer-tree. Can add one if we feel it is truly useful.
BUG=
TEST=
Review URL: http://codereview.chromium.org/6581004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77163 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
openning a url (when the url is typed into the omnibox). For example,
if the 10th tab is for 'google.com' the first tab is selected and you
type in 'google.com', this will switch to the 10th tab and not load
anything.
BUG=46623
TEST=none
Review URL: http://codereview.chromium.org/3173036
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77146 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
--enable-fullscreen.
Commit after WK bug 44797 (r79774).
Fullscreen tests are temporarily until expectations can be updated.
(Deleted test video-play-suspend.html is removed from test_expectations to fix lint errors.)
BUG=16735
TEST=fullscreen layout tests
Review URL: http://codereview.chromium.org/6627001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76979 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
The filesystem: generation and resolution methods have now been
added to WebKit, so Chrome should be able to load those URIs.
BUG=74858
TEST=none
Review URL: http://codereview.chromium.org/6612032
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76949 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
This CL is the same as what I submitted for M10 in http://codereview.chromium.org/6133006/, but rolled back then. We are now enabling the feature for M11.
BUG=61677
TEST=browser_tests --gtest_filter="SpeechInputBrowserTest.*"
Review URL: http://codereview.chromium.org/6610022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76893 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
directories that currently depend on common (like gpu).
TBR=bradnelson
Review URL: http://codereview.chromium.org/6603011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76785 0039d316-1c4b-4281-b951-d872f2087c98
|