diff options
author | scottbyer@chromium.org <scottbyer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-04 19:44:45 +0000 |
---|---|---|
committer | scottbyer@chromium.org <scottbyer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-04 19:44:45 +0000 |
commit | 9f8872b340391b04a59c93392d79c70778938c37 (patch) | |
tree | c5303856d743abbdd49040deba63977eb3d21d83 | |
parent | b0f2f3b67dc744fd0ef6d7b636b97c21c25519c5 (diff) | |
download | chromium_src-9f8872b340391b04a59c93392d79c70778938c37.zip chromium_src-9f8872b340391b04a59c93392d79c70778938c37.tar.gz chromium_src-9f8872b340391b04a59c93392d79c70778938c37.tar.bz2 |
Turn on flag for Linux, too.
BUG=none
TEST=check about:flags on Linux for Enable Cloud Print Proxy.
Review URL: http://codereview.chromium.org/6624021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76951 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/about_flags.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc index 54f5e55..ba3f3b4 100644 --- a/chrome/browser/about_flags.cc +++ b/chrome/browser/about_flags.cc @@ -130,13 +130,13 @@ const Experiment kExperiments[] = { IDS_FLAGS_CLOUD_PRINT_PROXY_NAME, IDS_FLAGS_CLOUD_PRINT_PROXY_DESCRIPTION, #if defined(GOOGLE_CHROME_BUILD) - // For a Chrome build, we know we have a PDF plug-in, and so we'll - // enable by platform as we get things working. - kOsMac, + // For a Chrome build, we know we have a PDF plug-in on Windows, so it's + // fully enabled. Mac and Linux still need some final polish. + kOsMac | kOsLinux, #else // Otherwise, where we know it could be working if a viable PDF // plug-in could be supplied, we'll keep the lab enabled. - kOsWin | kOsMac, + kOsWin | kOsMac | kOsLinux, #endif SINGLE_VALUE_TYPE(switches::kEnableCloudPrintProxy) }, |