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

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

Issue 232183002: Chromium side changes to add the ledger API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 6 years, 7 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/extensions/api/_api_features.json » ('j') | 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 821 matching lines...) Expand 10 before | Expand all | Expand 10 after
832 // Used for testing - keeps browser alive after last browser window closes. 832 // Used for testing - keeps browser alive after last browser window closes.
833 const char kKeepAliveForTest[] = "keep-alive-for-test"; 833 const char kKeepAliveForTest[] = "keep-alive-for-test";
834 834
835 // Enable Kiosk mode. 835 // Enable Kiosk mode.
836 const char kKioskMode[] = "kiosk"; 836 const char kKioskMode[] = "kiosk";
837 837
838 // Print automatically in kiosk mode. |kKioskMode| must be set as well. 838 // Print automatically in kiosk mode. |kKioskMode| must be set as well.
839 // See http://crbug.com/31395. 839 // See http://crbug.com/31395.
840 const char kKioskModePrinting[] = "kiosk-printing"; 840 const char kKioskModePrinting[] = "kiosk-printing";
841 841
842 // Use this server address ledger.
843 const char kLedgerServer[] = "ledger-server";
844
845 // Use this tracing token for ledger.
846 const char kLedgerTracingToken[] = "ledger-tracing-token";
847
842 // Causes Chrome to attempt to get metadata from the webstore for the 848 // Causes Chrome to attempt to get metadata from the webstore for the
843 // given item, and then prompt the user to download and install it. 849 // given item, and then prompt the user to download and install it.
844 const char kLimitedInstallFromWebstore[] = "limited-install-from-webstore"; 850 const char kLimitedInstallFromWebstore[] = "limited-install-from-webstore";
845 851
846 // Comma-separated list of directories with component extensions to load. 852 // Comma-separated list of directories with component extensions to load.
847 const char kLoadComponentExtension[] = "load-component-extension"; 853 const char kLoadComponentExtension[] = "load-component-extension";
848 854
849 // Loads an extension from the specified directory. 855 // Loads an extension from the specified directory.
850 const char kLoadExtension[] = "load-extension"; 856 const char kLoadExtension[] = "load-extension";
851 857
(...skipping 616 matching lines...) Expand 10 before | Expand all | Expand 10 after
1468 1474
1469 // ----------------------------------------------------------------------------- 1475 // -----------------------------------------------------------------------------
1470 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1476 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1471 // 1477 //
1472 // You were going to just dump your switches here, weren't you? Instead, please 1478 // You were going to just dump your switches here, weren't you? Instead, please
1473 // put them in alphabetical order above, or in order inside the appropriate 1479 // put them in alphabetical order above, or in order inside the appropriate
1474 // ifdef at the bottom. The order should match the header. 1480 // ifdef at the bottom. The order should match the header.
1475 // ----------------------------------------------------------------------------- 1481 // -----------------------------------------------------------------------------
1476 1482
1477 } // namespace switches 1483 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/extensions/api/_api_features.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698