OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 | 8 |
9 namespace switches { | 9 namespace switches { |
10 | 10 |
(...skipping 21 matching lines...) Expand all Loading... |
32 const char kApp[] = "app"; | 32 const char kApp[] = "app"; |
33 | 33 |
34 // Specifies that the extension-app with the specified id should be launched | 34 // Specifies that the extension-app with the specified id should be launched |
35 // according to its configuration. | 35 // according to its configuration. |
36 const char kAppId[] = "app-id"; | 36 const char kAppId[] = "app-id"; |
37 | 37 |
38 // Lacks meaning with out kApp. Causes the specified app to be launched in an | 38 // Lacks meaning with out kApp. Causes the specified app to be launched in an |
39 // panel window. | 39 // panel window. |
40 const char kAppLaunchAsPanel[] = "app-launch-as-panel"; | 40 const char kAppLaunchAsPanel[] = "app-launch-as-panel"; |
41 | 41 |
| 42 // Makes the app launcher popup when a new tab is created. |
| 43 const char kAppLauncherForNewTab[] = "app-launcher-new-tab"; |
| 44 |
42 // Authentication white list for servers | 45 // Authentication white list for servers |
43 const char kAuthServerWhitelist[] = "auth-server-whitelist"; | 46 const char kAuthServerWhitelist[] = "auth-server-whitelist"; |
44 | 47 |
45 // The value of this switch tells the app to listen for and broadcast | 48 // The value of this switch tells the app to listen for and broadcast |
46 // automation-related messages on IPC channel with the given ID. | 49 // automation-related messages on IPC channel with the given ID. |
47 const char kAutomationClientChannelID[] = "automation-channel"; | 50 const char kAutomationClientChannelID[] = "automation-channel"; |
48 | 51 |
49 // Enables the bookmark menu. | 52 // Enables the bookmark menu. |
50 const char kBookmarkMenu[] = "bookmark-menu"; | 53 const char kBookmarkMenu[] = "bookmark-menu"; |
51 | 54 |
(...skipping 796 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
848 | 851 |
849 // ----------------------------------------------------------------------------- | 852 // ----------------------------------------------------------------------------- |
850 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 853 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
851 // | 854 // |
852 // You were going to just dump your switches here, weren't you? Instead, | 855 // You were going to just dump your switches here, weren't you? Instead, |
853 // please put them in alphabetical order above, or in order inside the | 856 // please put them in alphabetical order above, or in order inside the |
854 // appropriate ifdef at the bottom. The order should match the header. | 857 // appropriate ifdef at the bottom. The order should match the header. |
855 // ----------------------------------------------------------------------------- | 858 // ----------------------------------------------------------------------------- |
856 | 859 |
857 } // namespace switches | 860 } // namespace switches |
OLD | NEW |