| 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 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 399 // Requests that a running browser process dump its collected histograms to a | 399 // Requests that a running browser process dump its collected histograms to a |
| 400 // given file. The file is overwritten if it exists. | 400 // given file. The file is overwritten if it exists. |
| 401 const char kDumpBrowserHistograms[] = "dump-browser-histograms"; | 401 const char kDumpBrowserHistograms[] = "dump-browser-histograms"; |
| 402 | 402 |
| 403 // Overrides the path of Easy Unlock component app. | 403 // Overrides the path of Easy Unlock component app. |
| 404 extern const char kEasyUnlockAppPath[] = "easy-unlock-app-path"; | 404 extern const char kEasyUnlockAppPath[] = "easy-unlock-app-path"; |
| 405 | 405 |
| 406 // If set, the app list will be enabled as if enabled from CWS. | 406 // If set, the app list will be enabled as if enabled from CWS. |
| 407 const char kEnableAppList[] = "enable-app-list"; | 407 const char kEnableAppList[] = "enable-app-list"; |
| 408 | 408 |
| 409 // Enables the <appview> tag in platform apps. | |
| 410 const char kEnableAppView[] = "enable-app-view"; | |
| 411 | |
| 412 // Enables the <window-controls> tag in platform apps. | 409 // Enables the <window-controls> tag in platform apps. |
| 413 const char kEnableAppWindowControls[] = "enable-app-window-controls"; | 410 const char kEnableAppWindowControls[] = "enable-app-window-controls"; |
| 414 | 411 |
| 415 // Enable OS integration for Chrome app file associations. | 412 // Enable OS integration for Chrome app file associations. |
| 416 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations"; | 413 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations"; |
| 417 | 414 |
| 418 // Enables the experimental asynchronous DNS client. | 415 // Enables the experimental asynchronous DNS client. |
| 419 const char kEnableAsyncDns[] = "enable-async-dns"; | 416 const char kEnableAsyncDns[] = "enable-async-dns"; |
| 420 | 417 |
| 421 // Enables the inclusion of non-standard ports when generating the Kerberos SPN | 418 // Enables the inclusion of non-standard ports when generating the Kerberos SPN |
| (...skipping 953 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1375 | 1372 |
| 1376 // ----------------------------------------------------------------------------- | 1373 // ----------------------------------------------------------------------------- |
| 1377 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1374 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1378 // | 1375 // |
| 1379 // You were going to just dump your switches here, weren't you? Instead, please | 1376 // You were going to just dump your switches here, weren't you? Instead, please |
| 1380 // put them in alphabetical order above, or in order inside the appropriate | 1377 // put them in alphabetical order above, or in order inside the appropriate |
| 1381 // ifdef at the bottom. The order should match the header. | 1378 // ifdef at the bottom. The order should match the header. |
| 1382 // ----------------------------------------------------------------------------- | 1379 // ----------------------------------------------------------------------------- |
| 1383 | 1380 |
| 1384 } // namespace switches | 1381 } // namespace switches |
| OLD | NEW |