diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-24 21:57:50 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-24 21:57:50 +0000 |
commit | 9de0ec1eb4f9056dbc55ee5c1ecba8781362992b (patch) | |
tree | 401fed2b3ff07c5bf5d0990bd30e7e62fe4acdee | |
parent | e9a193823eca97612947a3a69589267da5ab0b2e (diff) | |
download | chromium_src-9de0ec1eb4f9056dbc55ee5c1ecba8781362992b.zip chromium_src-9de0ec1eb4f9056dbc55ee5c1ecba8781362992b.tar.gz chromium_src-9de0ec1eb4f9056dbc55ee5c1ecba8781362992b.tar.bz2 |
Print Preview: Fix the entry in about:flags.
BUG=94121
TEST=Print preview is on by default again.
Review URL: http://codereview.chromium.org/7725006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98123 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/about_flags.cc | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc index 8c70a7a..49dbd3f 100644 --- a/chrome/browser/about_flags.cc +++ b/chrome/browser/about_flags.cc @@ -160,18 +160,17 @@ const Experiment kExperiments[] = { kOsAll, SINGLE_VALUE_TYPE(switches::kDisableGpuVsync) }, + // Exposed on all platforms until there is a workaround for easy access to + // the native print dialog for users that need it. Once that's done, revert + // back to: + // Only expose this for Chromium builds where users may not have the PDF + // plugin. Do not give Google Chrome users the option to disable it here. + // Also expose it for Chrome OS where print preview is still experimental. { "print-preview", // FLAGS:RECORD_UMA IDS_FLAGS_PRINT_PREVIEW_NAME, IDS_FLAGS_PRINT_PREVIEW_DESCRIPTION, -#if !defined(GOOGLE_CHROME_BUILD) || defined(OS_CHROMEOS) - // Only expose this for Chromium builds where users may not have the PDF - // plugin. Do not give Google Chrome users the option to disable it here. - // Also expose it for Chrome OS where print preview is still experimental. kOsAll, -#else - 0, -#endif SINGLE_VALUE_TYPE(switches::kEnablePrintPreview) }, { |