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

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

Issue 7554021: Exposed test hooks for replacing GAIA auth extension. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 4 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 1083 matching lines...) Expand 10 before | Expand all | Expand 10 after
1094 1094
1095 // URL of the html page for Screen Saver. 1095 // URL of the html page for Screen Saver.
1096 const char kScreenSaverUrl[] = "screen-saver-url"; 1096 const char kScreenSaverUrl[] = "screen-saver-url";
1097 1097
1098 // Flag to trigger ChromeOS system log compression during feedback submit. 1098 // Flag to trigger ChromeOS system log compression during feedback submit.
1099 const char kCompressSystemFeedback[] = "compress-sys-feedback"; 1099 const char kCompressSystemFeedback[] = "compress-sys-feedback";
1100 1100
1101 // Enables Advanced File System. 1101 // Enables Advanced File System.
1102 const char kEnableAdvancedFileSystem[] = "enable-advanced-fs"; 1102 const char kEnableAdvancedFileSystem[] = "enable-advanced-fs";
1103 1103
1104 // Enables overriding the path for the default authentication extension.
1105 const char kAuthExtensionPath[] = "auth-ext-path";
1106
1104 #ifndef NDEBUG 1107 #ifndef NDEBUG
1105 // Skips all other OOBE pages after user login. 1108 // Skips all other OOBE pages after user login.
1106 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin"; 1109 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin";
1107 1110
1108 // Enables overriding the path for the default authentication extension.
1109 const char kAuthExtensionPath[] = "auth-ext-path";
1110
1111 // Enables overriding the path off file manager extension. 1111 // Enables overriding the path off file manager extension.
1112 const char kFileManagerExtensionPath[] = "filemgr-ext-path"; 1112 const char kFileManagerExtensionPath[] = "filemgr-ext-path";
1113 #endif 1113 #endif
1114 #endif 1114 #endif
1115 1115
1116 #if defined(OS_POSIX) && !defined(OS_MACOSX) 1116 #if defined(OS_POSIX) && !defined(OS_MACOSX)
1117 // Specify the amount the trackpad should scroll by. 1117 // Specify the amount the trackpad should scroll by.
1118 const char kScrollPixels[] = "scroll-pixels"; 1118 const char kScrollPixels[] = "scroll-pixels";
1119 #endif 1119 #endif
1120 1120
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
1236 1236
1237 // ----------------------------------------------------------------------------- 1237 // -----------------------------------------------------------------------------
1238 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1238 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1239 // 1239 //
1240 // You were going to just dump your switches here, weren't you? Instead, 1240 // You were going to just dump your switches here, weren't you? Instead,
1241 // please put them in alphabetical order above, or in order inside the 1241 // please put them in alphabetical order above, or in order inside the
1242 // appropriate ifdef at the bottom. The order should match the header. 1242 // appropriate ifdef at the bottom. The order should match the header.
1243 // ----------------------------------------------------------------------------- 1243 // -----------------------------------------------------------------------------
1244 1244
1245 } // namespace switches 1245 } // 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