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

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

Issue 2893313003: Add a switch to prevent logging redirection on chromeos. (Closed)
Patch Set: Fix include Created 3 years, 6 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') | 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 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "ppapi/features/features.h" 10 #include "ppapi/features/features.h"
(...skipping 922 matching lines...) Expand 10 before | Expand all | Expand 10 after
933 "tab-management-experiment-type-elderberry"; 933 "tab-management-experiment-type-elderberry";
934 934
935 // Custom WebAPK server URL for the sake of testing. 935 // Custom WebAPK server URL for the sake of testing.
936 const char kWebApkServerUrl[] = "webapk-server-url"; 936 const char kWebApkServerUrl[] = "webapk-server-url";
937 #endif // defined(OS_ANDROID) 937 #endif // defined(OS_ANDROID)
938 938
939 #if defined(OS_CHROMEOS) 939 #if defined(OS_CHROMEOS)
940 // Custom crosh command. 940 // Custom crosh command.
941 const char kCroshCommand[] = "crosh-command"; 941 const char kCroshCommand[] = "crosh-command";
942 942
943 // Disables logging redirect for testing.
944 const char kDisableLoggingRedirect[] = "disable-logging-redirect";
945
943 // Disables apps on the login screen. By default, they are allowed and can be 946 // Disables apps on the login screen. By default, they are allowed and can be
944 // installed through policy. 947 // installed through policy.
945 const char kDisableLoginScreenApps[] = "disable-login-screen-apps"; 948 const char kDisableLoginScreenApps[] = "disable-login-screen-apps";
946 949
947 // Disables native cups integration 950 // Disables native cups integration
948 const char kDisableNativeCups[] = "disable-native-cups"; 951 const char kDisableNativeCups[] = "disable-native-cups";
949 #endif // defined(OS_CHROMEOS) 952 #endif // defined(OS_CHROMEOS)
950 953
951 #if defined(USE_ASH) 954 #if defined(USE_ASH)
952 const char kOpenAsh[] = "open-ash"; 955 const char kOpenAsh[] = "open-ash";
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
1189 1192
1190 // ----------------------------------------------------------------------------- 1193 // -----------------------------------------------------------------------------
1191 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. 1194 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE.
1192 // 1195 //
1193 // You were going to just dump your switches here, weren't you? Instead, please 1196 // You were going to just dump your switches here, weren't you? Instead, please
1194 // put them in alphabetical order above, or in order inside the appropriate 1197 // put them in alphabetical order above, or in order inside the appropriate
1195 // ifdef at the bottom. The order should match the header. 1198 // ifdef at the bottom. The order should match the header.
1196 // ----------------------------------------------------------------------------- 1199 // -----------------------------------------------------------------------------
1197 1200
1198 } // namespace switches 1201 } // 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