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

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

Issue 126063004: Add flag to enable Privet storage (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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 694 matching lines...) Expand 10 before | Expand all | Expand 10 after
705 // Enables the origin chip. 705 // Enables the origin chip.
706 const char kEnableOriginChip[] = "enable-origin-chip"; 706 const char kEnableOriginChip[] = "enable-origin-chip";
707 707
708 // Enables panels (always on-top docked pop-up windows). 708 // Enables panels (always on-top docked pop-up windows).
709 const char kEnablePanels[] = "enable-panels"; 709 const char kEnablePanels[] = "enable-panels";
710 710
711 // Enables showing unregistered printers in print preview 711 // Enables showing unregistered printers in print preview
712 const char kEnablePrintPreviewRegisterPromos[] = 712 const char kEnablePrintPreviewRegisterPromos[] =
713 "enable-print-preview-register-promos"; 713 "enable-print-preview-register-promos";
714 714
715 // Enable Privet storage.
716 const char kEnablePrivetStorage[] = "enable-privet-storage";
717
715 // Enables tracking of tasks in profiler for viewing via about:profiler. 718 // Enables tracking of tasks in profiler for viewing via about:profiler.
716 // To predominantly disable tracking (profiling), use the command line switch: 719 // To predominantly disable tracking (profiling), use the command line switch:
717 // --enable-profiling=0 720 // --enable-profiling=0
718 // Some tracking will still take place at startup, but it will be turned off 721 // Some tracking will still take place at startup, but it will be turned off
719 // during chrome_browser_main. 722 // during chrome_browser_main.
720 const char kEnableProfiling[] = "enable-profiling"; 723 const char kEnableProfiling[] = "enable-profiling";
721 724
722 // Enables query in the omnibox. 725 // Enables query in the omnibox.
723 const char kEnableQueryExtraction[] = "enable-query-extraction"; 726 const char kEnableQueryExtraction[] = "enable-query-extraction";
724 727
(...skipping 955 matching lines...) Expand 10 before | Expand all | Expand 10 after
1680 1683
1681 // ----------------------------------------------------------------------------- 1684 // -----------------------------------------------------------------------------
1682 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1685 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1683 // 1686 //
1684 // You were going to just dump your switches here, weren't you? Instead, please 1687 // You were going to just dump your switches here, weren't you? Instead, please
1685 // put them in alphabetical order above, or in order inside the appropriate 1688 // put them in alphabetical order above, or in order inside the appropriate
1686 // ifdef at the bottom. The order should match the header. 1689 // ifdef at the bottom. The order should match the header.
1687 // ----------------------------------------------------------------------------- 1690 // -----------------------------------------------------------------------------
1688 1691
1689 } // namespace switches 1692 } // 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