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

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

Issue 977323003: Disable easter egg on enterprised enrolled devices (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 9
10 namespace switches { 10 namespace switches {
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 const char kDisableComponentUpdate[] = "disable-component-update"; 230 const char kDisableComponentUpdate[] = "disable-component-update";
231 231
232 // Disables installation of default apps on first run. This is used during 232 // Disables installation of default apps on first run. This is used during
233 // automated testing. 233 // automated testing.
234 const char kDisableDefaultApps[] = "disable-default-apps"; 234 const char kDisableDefaultApps[] = "disable-default-apps";
235 235
236 // Disables device discovery notifications. 236 // Disables device discovery notifications.
237 const char kDisableDeviceDiscoveryNotifications[] = 237 const char kDisableDeviceDiscoveryNotifications[] =
238 "disable-device-discovery-notifications"; 238 "disable-device-discovery-notifications";
239 239
240 // Disables the dinosaur easter egg on the offline interstitial.
241 const char kDisableDinosaurEasterEgg[] = "disable-dinosaur-easter-egg";
242
240 // Disables Domain Reliability Monitoring. 243 // Disables Domain Reliability Monitoring.
241 const char kDisableDomainReliability[] = "disable-domain-reliability"; 244 const char kDisableDomainReliability[] = "disable-domain-reliability";
242 245
243 // Disable extensions. 246 // Disable extensions.
244 const char kDisableExtensions[] = "disable-extensions"; 247 const char kDisableExtensions[] = "disable-extensions";
245 248
246 // Disable checking for user opt-in for extensions that want to inject script 249 // Disable checking for user opt-in for extensions that want to inject script
247 // into file URLs (ie, always allow it). This is used during automated testing. 250 // into file URLs (ie, always allow it). This is used during automated testing.
248 const char kDisableExtensionsFileAccessCheck[] = 251 const char kDisableExtensionsFileAccessCheck[] =
249 "disable-extensions-file-access-check"; 252 "disable-extensions-file-access-check";
(...skipping 1127 matching lines...) Expand 10 before | Expand all | Expand 10 after
1377 1380
1378 // ----------------------------------------------------------------------------- 1381 // -----------------------------------------------------------------------------
1379 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1382 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1380 // 1383 //
1381 // You were going to just dump your switches here, weren't you? Instead, please 1384 // You were going to just dump your switches here, weren't you? Instead, please
1382 // put them in alphabetical order above, or in order inside the appropriate 1385 // put them in alphabetical order above, or in order inside the appropriate
1383 // ifdef at the bottom. The order should match the header. 1386 // ifdef at the bottom. The order should match the header.
1384 // ----------------------------------------------------------------------------- 1387 // -----------------------------------------------------------------------------
1385 1388
1386 } // namespace switches 1389 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698