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

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

Issue 2475813002: Enable Native CUPS printing on Chrome OS. (Closed)
Patch Set: rebase Created 3 years, 8 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
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 916 matching lines...) Expand 10 before | Expand all | Expand 10 after
927 const char kTabManagementExperimentTypeDisabled[] = 927 const char kTabManagementExperimentTypeDisabled[] =
928 "tab-management-experiment-type-disabled"; 928 "tab-management-experiment-type-disabled";
929 const char kTabManagementExperimentTypeElderberry[] = 929 const char kTabManagementExperimentTypeElderberry[] =
930 "tab-management-experiment-type-elderberry"; 930 "tab-management-experiment-type-elderberry";
931 931
932 // Custom WebAPK server URL for the sake of testing. 932 // Custom WebAPK server URL for the sake of testing.
933 const char kWebApkServerUrl[] = "webapk-server-url"; 933 const char kWebApkServerUrl[] = "webapk-server-url";
934 #endif // defined(OS_ANDROID) 934 #endif // defined(OS_ANDROID)
935 935
936 #if defined(OS_CHROMEOS) 936 #if defined(OS_CHROMEOS)
937 // Custom crosh command.
938 const char kCroshCommand[] = "crosh-command";
939
940 // Disables native cups integration
941 const char kDisableNativeCups[] = "disable-native-cups";
942
937 // Enables apps on the login screen. 943 // Enables apps on the login screen.
938 const char kEnableLoginScreenApps[] = "enable-login-screen-apps"; 944 const char kEnableLoginScreenApps[] = "enable-login-screen-apps";
939
940 // Enables native cups integration
941 const char kEnableNativeCups[] = "enable-native-cups";
942
943 // Custom crosh command.
944 const char kCroshCommand[] = "crosh-command";
945 #endif // defined(OS_CHROMEOS) 945 #endif // defined(OS_CHROMEOS)
946 946
947 #if defined(USE_ASH) 947 #if defined(USE_ASH)
948 const char kOpenAsh[] = "open-ash"; 948 const char kOpenAsh[] = "open-ash";
949 #endif 949 #endif
950 950
951 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) 951 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS)
952 // These flags show the man page on Linux. They are equivalent to each 952 // These flags show the man page on Linux. They are equivalent to each
953 // other. 953 // other.
954 const char kHelp[] = "help"; 954 const char kHelp[] = "help";
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
1183 1183
1184 // ----------------------------------------------------------------------------- 1184 // -----------------------------------------------------------------------------
1185 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. 1185 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE.
1186 // 1186 //
1187 // You were going to just dump your switches here, weren't you? Instead, please 1187 // You were going to just dump your switches here, weren't you? Instead, please
1188 // put them in alphabetical order above, or in order inside the appropriate 1188 // put them in alphabetical order above, or in order inside the appropriate
1189 // ifdef at the bottom. The order should match the header. 1189 // ifdef at the bottom. The order should match the header.
1190 // ----------------------------------------------------------------------------- 1190 // -----------------------------------------------------------------------------
1191 1191
1192 } // namespace switches 1192 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698