OLD | NEW |
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 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
402 // Disables prefetching of DNS information. | 402 // Disables prefetching of DNS information. |
403 const char kDnsPrefetchDisable[] = "dns-prefetch-disable"; | 403 const char kDnsPrefetchDisable[] = "dns-prefetch-disable"; |
404 | 404 |
405 // Requests that a running browser process dump its collected histograms to a | 405 // Requests that a running browser process dump its collected histograms to a |
406 // given file. The file is overwritten if it exists. | 406 // given file. The file is overwritten if it exists. |
407 const char kDumpBrowserHistograms[] = "dump-browser-histograms"; | 407 const char kDumpBrowserHistograms[] = "dump-browser-histograms"; |
408 | 408 |
409 // Overrides the path of Easy Unlock component app. | 409 // Overrides the path of Easy Unlock component app. |
410 extern const char kEasyUnlockAppPath[] = "easy-unlock-app-path"; | 410 extern const char kEasyUnlockAppPath[] = "easy-unlock-app-path"; |
411 | 411 |
412 // Enables the notifications for the custodian of a supervised user when the | |
413 // supervised user sends an access request. | |
414 extern const char kEnableAccessRequestNotifications[] = | |
415 "enable-access-request-notifications"; | |
416 | |
417 // Enables the experimental Answers in Suggest feature. | 412 // Enables the experimental Answers in Suggest feature. |
418 const char kEnableAnswersInSuggest[] = "enable-answers-in-suggest"; | 413 const char kEnableAnswersInSuggest[] = "enable-answers-in-suggest"; |
419 | 414 |
420 // If set, the app list will be enabled as if enabled from CWS. | 415 // If set, the app list will be enabled as if enabled from CWS. |
421 const char kEnableAppList[] = "enable-app-list"; | 416 const char kEnableAppList[] = "enable-app-list"; |
422 | 417 |
423 // Enables the <appview> tag in platform apps. | 418 // Enables the <appview> tag in platform apps. |
424 const char kEnableAppView[] = "enable-app-view"; | 419 const char kEnableAppView[] = "enable-app-view"; |
425 | 420 |
426 // Enables the <window-controls> tag in platform apps. | 421 // Enables the <window-controls> tag in platform apps. |
(...skipping 976 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1403 | 1398 |
1404 // ----------------------------------------------------------------------------- | 1399 // ----------------------------------------------------------------------------- |
1405 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1400 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1406 // | 1401 // |
1407 // You were going to just dump your switches here, weren't you? Instead, please | 1402 // You were going to just dump your switches here, weren't you? Instead, please |
1408 // put them in alphabetical order above, or in order inside the appropriate | 1403 // put them in alphabetical order above, or in order inside the appropriate |
1409 // ifdef at the bottom. The order should match the header. | 1404 // ifdef at the bottom. The order should match the header. |
1410 // ----------------------------------------------------------------------------- | 1405 // ----------------------------------------------------------------------------- |
1411 | 1406 |
1412 } // namespace switches | 1407 } // namespace switches |
OLD | NEW |