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

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

Issue 2149953002: Enable login screen apps. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix unittest Created 3 years, 9 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 918 matching lines...) Expand 10 before | Expand all | Expand 10 after
929 const char kTabManagementExperimentTypeDisabled[] = 929 const char kTabManagementExperimentTypeDisabled[] =
930 "tab-management-experiment-type-disabled"; 930 "tab-management-experiment-type-disabled";
931 const char kTabManagementExperimentTypeElderberry[] = 931 const char kTabManagementExperimentTypeElderberry[] =
932 "tab-management-experiment-type-elderberry"; 932 "tab-management-experiment-type-elderberry";
933 933
934 // Custom WebAPK server URL for the sake of testing. 934 // Custom WebAPK server URL for the sake of testing.
935 const char kWebApkServerUrl[] = "webapk-server-url"; 935 const char kWebApkServerUrl[] = "webapk-server-url";
936 #endif // defined(OS_ANDROID) 936 #endif // defined(OS_ANDROID)
937 937
938 #if defined(OS_CHROMEOS) 938 #if defined(OS_CHROMEOS)
939 // Enables apps on the login screen.
940 const char kEnableLoginScreenApps[] = "enable-login-screen-apps";
941
939 // Enables native cups integration 942 // Enables native cups integration
940 const char kEnableNativeCups[] = "enable-native-cups"; 943 const char kEnableNativeCups[] = "enable-native-cups";
941 944
942 // Custom crosh command. 945 // Custom crosh command.
943 const char kCroshCommand[] = "crosh-command"; 946 const char kCroshCommand[] = "crosh-command";
944 #endif // defined(OS_CHROMEOS) 947 #endif // defined(OS_CHROMEOS)
945 948
946 #if defined(USE_ASH) 949 #if defined(USE_ASH)
947 const char kOpenAsh[] = "open-ash"; 950 const char kOpenAsh[] = "open-ash";
948 #endif 951 #endif
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
1173 1176
1174 // ----------------------------------------------------------------------------- 1177 // -----------------------------------------------------------------------------
1175 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. 1178 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE.
1176 // 1179 //
1177 // You were going to just dump your switches here, weren't you? Instead, please 1180 // You were going to just dump your switches here, weren't you? Instead, please
1178 // put them in alphabetical order above, or in order inside the appropriate 1181 // put them in alphabetical order above, or in order inside the appropriate
1179 // ifdef at the bottom. The order should match the header. 1182 // ifdef at the bottom. The order should match the header.
1180 // ----------------------------------------------------------------------------- 1183 // -----------------------------------------------------------------------------
1181 1184
1182 } // namespace switches 1185 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698