Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(259)

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 189483006: [Print Preview] Re-add flags for register promos (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 693 matching lines...) Expand 10 before | Expand all | Expand 10 after
704 // to do that with "flag=value" flags. 704 // to do that with "flag=value" flags.
705 const char kEnableOriginChipV2[] = "enable-origin-chip-v2"; 705 const char kEnableOriginChipV2[] = "enable-origin-chip-v2";
706 const char kEnableOriginChipV2HideOnMouseRelease[] = 706 const char kEnableOriginChipV2HideOnMouseRelease[] =
707 "enable-origin-chip-v2-hide-on-mouse-release"; 707 "enable-origin-chip-v2-hide-on-mouse-release";
708 const char kEnableOriginChipV2HideOnUserInput[] = 708 const char kEnableOriginChipV2HideOnUserInput[] =
709 "enable-origin-chip-v2-hide-on-user-input"; 709 "enable-origin-chip-v2-hide-on-user-input";
710 710
711 // Enables panels (always on-top docked pop-up windows). 711 // Enables panels (always on-top docked pop-up windows).
712 const char kEnablePanels[] = "enable-panels"; 712 const char kEnablePanels[] = "enable-panels";
713 713
714 // Enables showing unregistered printers in print preview
715 const char kEnablePrintPreviewRegisterPromos[] =
716 "enable-print-preview-register-promos";
717
714 // Enable Privet storage. 718 // Enable Privet storage.
715 const char kEnablePrivetStorage[] = "enable-privet-storage"; 719 const char kEnablePrivetStorage[] = "enable-privet-storage";
716 720
717 // Enables tracking of tasks in profiler for viewing via about:profiler. 721 // Enables tracking of tasks in profiler for viewing via about:profiler.
718 // To predominantly disable tracking (profiling), use the command line switch: 722 // To predominantly disable tracking (profiling), use the command line switch:
719 // --enable-profiling=0 723 // --enable-profiling=0
720 // Some tracking will still take place at startup, but it will be turned off 724 // Some tracking will still take place at startup, but it will be turned off
721 // during chrome_browser_main. 725 // during chrome_browser_main.
722 const char kEnableProfiling[] = "enable-profiling"; 726 const char kEnableProfiling[] = "enable-profiling";
723 727
(...skipping 942 matching lines...) Expand 10 before | Expand all | Expand 10 after
1666 1670
1667 // ----------------------------------------------------------------------------- 1671 // -----------------------------------------------------------------------------
1668 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1672 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1669 // 1673 //
1670 // You were going to just dump your switches here, weren't you? Instead, please 1674 // You were going to just dump your switches here, weren't you? Instead, please
1671 // put them in alphabetical order above, or in order inside the appropriate 1675 // put them in alphabetical order above, or in order inside the appropriate
1672 // ifdef at the bottom. The order should match the header. 1676 // ifdef at the bottom. The order should match the header.
1673 // ----------------------------------------------------------------------------- 1677 // -----------------------------------------------------------------------------
1674 1678
1675 } // namespace switches 1679 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698