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 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 | 9 |
10 namespace switches { | 10 namespace switches { |
(...skipping 25 matching lines...) Expand all Loading... |
36 // according to its configuration. | 36 // according to its configuration. |
37 const char kAppId[] = "app-id"; | 37 const char kAppId[] = "app-id"; |
38 | 38 |
39 // Lacks meaning with out kApp. Causes the specified app to be launched in an | 39 // Lacks meaning with out kApp. Causes the specified app to be launched in an |
40 // panel window. | 40 // panel window. |
41 const char kAppLaunchAsPanel[] = "app-launch-as-panel"; | 41 const char kAppLaunchAsPanel[] = "app-launch-as-panel"; |
42 | 42 |
43 // Makes the app launcher popup when a new tab is created. | 43 // Makes the app launcher popup when a new tab is created. |
44 const char kAppsPanel[] = "apps-panel"; | 44 const char kAppsPanel[] = "apps-panel"; |
45 | 45 |
46 // The title to use for the gallery link in the app launcher. | |
47 const char kAppsGalleryTitle[] = "apps-gallery-title"; | |
48 | |
49 // The URL to use for the gallery link in the app launcher. | 46 // The URL to use for the gallery link in the app launcher. |
50 const char kAppsGalleryURL[] = "apps-gallery-url"; | 47 const char kAppsGalleryURL[] = "apps-gallery-url"; |
51 | 48 |
52 // Disable throbber for extension apps. | 49 // Disable throbber for extension apps. |
53 const char kAppsNoThrob[] = "apps-no-throb"; | 50 const char kAppsNoThrob[] = "apps-no-throb"; |
54 | 51 |
55 // Whether to display the "Debug" link for app launch behavior. | 52 // Whether to display the "Debug" link for app launch behavior. |
56 const char kAppsDebug[] = "apps-debug"; | 53 const char kAppsDebug[] = "apps-debug"; |
57 | 54 |
58 // Authentication white list for servers | 55 // Authentication white list for servers |
(...skipping 939 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
998 | 995 |
999 // ----------------------------------------------------------------------------- | 996 // ----------------------------------------------------------------------------- |
1000 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 997 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1001 // | 998 // |
1002 // You were going to just dump your switches here, weren't you? Instead, | 999 // You were going to just dump your switches here, weren't you? Instead, |
1003 // please put them in alphabetical order above, or in order inside the | 1000 // please put them in alphabetical order above, or in order inside the |
1004 // appropriate ifdef at the bottom. The order should match the header. | 1001 // appropriate ifdef at the bottom. The order should match the header. |
1005 // ----------------------------------------------------------------------------- | 1002 // ----------------------------------------------------------------------------- |
1006 | 1003 |
1007 } // namespace switches | 1004 } // namespace switches |
OLD | NEW |