Bring out cloud print proxy from behind a flag on Linux.
BUG=NONE
TEST=The cloud print proxy is available under options on Linux without the command line flag.
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=93683
Review URL: http://codereview.chromium.org/7277018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97546 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
index 7f1efa0..3e7ec63 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -106,15 +106,15 @@
"cloud-print-proxy", // FLAGS:RECORD_UMA
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 on Windows, so it's
- // fully enabled. Linux still need some final polish.
- kOsLinux,
-#else
+ // fully enabled.
// Otherwise, where we know Windows could be working if a viable PDF
- // plug-in could be supplied, we'll keep the lab enabled. Mac always has
- // PDF rasterization available, so no flag needed there.
- kOsWin | kOsLinux,
+ // plug-in could be supplied, we'll keep the lab enabled. Mac and Linux
+ // always have PDF rasterization available, so no flag needed there.
+#if !defined(GOOGLE_CHROME_BUILD)
+ kOsWin,
+#else
+ 0,
#endif
SINGLE_VALUE_TYPE(switches::kEnableCloudPrintProxy)
},