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 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
492 // Enables establishing a backup TCP connection if a specified timeout is | 492 // Enables establishing a backup TCP connection if a specified timeout is |
493 // exceeded. | 493 // exceeded. |
494 const char kEnableConnectBackupJobs[] = "enable-connect-backup-jobs"; | 494 const char kEnableConnectBackupJobs[] = "enable-connect-backup-jobs"; |
495 | 495 |
496 // Enables web developers to create apps for Chrome without using crx packages. | 496 // Enables web developers to create apps for Chrome without using crx packages. |
497 const char kEnableCrxlessWebApps[] = "enable-crxless-web-apps"; | 497 const char kEnableCrxlessWebApps[] = "enable-crxless-web-apps"; |
498 | 498 |
499 // If true devtools experimental settings are enabled. | 499 // If true devtools experimental settings are enabled. |
500 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments"; | 500 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments"; |
501 | 501 |
502 // Enables Drive v2 API instead of Google Documents List API. | |
503 const char kEnableDriveV2Api[] = "enable-drive-v2-api"; | |
satorux1
2012/07/09 15:58:11
could you create a separate patch that adds this f
kochi
2012/07/10 09:01:14
Done.
https://chromiumcodereview.appspot.com/10753
| |
504 | |
502 // Enables extensions to be easily installed from sites other than the web | 505 // Enables extensions to be easily installed from sites other than the web |
503 // store. Without this flag, they can still be installed, but must be manually | 506 // store. Without this flag, they can still be installed, but must be manually |
504 // dragged onto chrome://extensions/. | 507 // dragged onto chrome://extensions/. |
505 const char kEnableEasyOffStoreExtensionInstall[] = | 508 const char kEnableEasyOffStoreExtensionInstall[] = |
506 "enable-easy-off-store-extension-install"; | 509 "enable-easy-off-store-extension-install"; |
507 | 510 |
508 // Enables extension APIs that are in development. | 511 // Enables extension APIs that are in development. |
509 const char kEnableExperimentalExtensionApis[] = | 512 const char kEnableExperimentalExtensionApis[] = |
510 "enable-experimental-extension-apis"; | 513 "enable-experimental-extension-apis"; |
511 | 514 |
(...skipping 978 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1490 | 1493 |
1491 // ----------------------------------------------------------------------------- | 1494 // ----------------------------------------------------------------------------- |
1492 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1495 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1493 // | 1496 // |
1494 // You were going to just dump your switches here, weren't you? Instead, please | 1497 // You were going to just dump your switches here, weren't you? Instead, please |
1495 // put them in alphabetical order above, or in order inside the appropriate | 1498 // put them in alphabetical order above, or in order inside the appropriate |
1496 // ifdef at the bottom. The order should match the header. | 1499 // ifdef at the bottom. The order should match the header. |
1497 // ----------------------------------------------------------------------------- | 1500 // ----------------------------------------------------------------------------- |
1498 | 1501 |
1499 } // namespace switches | 1502 } // namespace switches |
OLD | NEW |