| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 const char kAlwaysAuthorizePlugins[] = "always-authorize-plugins"; | 58 const char kAlwaysAuthorizePlugins[] = "always-authorize-plugins"; |
| 59 | 59 |
| 60 // Specifies that the extension-app with the specified id should be launched | 60 // Specifies that the extension-app with the specified id should be launched |
| 61 // according to its configuration. | 61 // according to its configuration. |
| 62 const char kAppId[] = "app-id"; | 62 const char kAppId[] = "app-id"; |
| 63 | 63 |
| 64 // Specifies that the associated value should be launched in "application" | 64 // Specifies that the associated value should be launched in "application" |
| 65 // mode. | 65 // mode. |
| 66 const char kApp[] = "app"; | 66 const char kApp[] = "app"; |
| 67 | 67 |
| 68 // Flag to enable apps_debugger app. | 68 // Flag to enable apps_devtool app. |
| 69 const char kAppsDebugger[] = "apps-debugger"; | 69 const char kAppsDevtool[] = "apps-devtool"; |
| 70 | 70 |
| 71 // Specifies the initial size for application windows launched with --app. | 71 // Specifies the initial size for application windows launched with --app. |
| 72 // --app-window-size=w,h | 72 // --app-window-size=w,h |
| 73 const char kAppWindowSize[] = "app-window-size"; | 73 const char kAppWindowSize[] = "app-window-size"; |
| 74 | 74 |
| 75 // A URL for the server which assigns channel ids for server pushed app | 75 // A URL for the server which assigns channel ids for server pushed app |
| 76 // notifications. | 76 // notifications. |
| 77 const char kAppNotifyChannelServerURL[] = "app-notify-channel-server-url"; | 77 const char kAppNotifyChannelServerURL[] = "app-notify-channel-server-url"; |
| 78 | 78 |
| 79 // Overrides the apps checkout URL, which is used to determine when to expose | 79 // Overrides the apps checkout URL, which is used to determine when to expose |
| (...skipping 1569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1649 | 1649 |
| 1650 // ----------------------------------------------------------------------------- | 1650 // ----------------------------------------------------------------------------- |
| 1651 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1651 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1652 // | 1652 // |
| 1653 // You were going to just dump your switches here, weren't you? Instead, please | 1653 // You were going to just dump your switches here, weren't you? Instead, please |
| 1654 // put them in alphabetical order above, or in order inside the appropriate | 1654 // put them in alphabetical order above, or in order inside the appropriate |
| 1655 // ifdef at the bottom. The order should match the header. | 1655 // ifdef at the bottom. The order should match the header. |
| 1656 // ----------------------------------------------------------------------------- | 1656 // ----------------------------------------------------------------------------- |
| 1657 | 1657 |
| 1658 } // namespace switches | 1658 } // namespace switches |
| OLD | NEW |