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 // Contains constants for known URLs and portions thereof. | 5 // Contains constants for known URLs and portions thereof. |
6 | 6 |
7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_ | 7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_ |
8 #define CHROME_COMMON_URL_CONSTANTS_H_ | 8 #define CHROME_COMMON_URL_CONSTANTS_H_ |
9 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 extern const char kChromeUIHistoryURL[]; | 79 extern const char kChromeUIHistoryURL[]; |
80 extern const char kChromeUIIPCURL[]; | 80 extern const char kChromeUIIPCURL[]; |
81 extern const char kChromeUIKeyboardURL[]; | 81 extern const char kChromeUIKeyboardURL[]; |
82 extern const char kChromeUINewTabURL[]; | 82 extern const char kChromeUINewTabURL[]; |
83 extern const char kChromeUIPluginsURL[]; | 83 extern const char kChromeUIPluginsURL[]; |
84 extern const char kChromeUIPrintURL[]; | 84 extern const char kChromeUIPrintURL[]; |
85 extern const char kChromeUISettingsURL[]; | 85 extern const char kChromeUISettingsURL[]; |
86 extern const char kChromeUITextfieldsURL[]; | 86 extern const char kChromeUITextfieldsURL[]; |
87 | 87 |
88 #if defined(OS_CHROMEOS) | 88 #if defined(OS_CHROMEOS) |
| 89 extern const char kChromeUIAboutOSCreditsURL[]; |
89 extern const char kChromeUIFileBrowseURL[]; | 90 extern const char kChromeUIFileBrowseURL[]; |
90 extern const char kChromeUIImageBurnerURL[]; | 91 extern const char kChromeUIImageBurnerURL[]; |
91 extern const char kChromeUIKeyboardOverlayURL[]; | 92 extern const char kChromeUIKeyboardOverlayURL[]; |
92 extern const char kChromeUIMediaplayerURL[]; | 93 extern const char kChromeUIMediaplayerURL[]; |
93 extern const char kChromeUIMobileSetupURL[]; | 94 extern const char kChromeUIMobileSetupURL[]; |
94 extern const char kChromeUIRegisterPageURL[]; | 95 extern const char kChromeUIRegisterPageURL[]; |
95 extern const char kChromeUISlideshowURL[]; | 96 extern const char kChromeUISlideshowURL[]; |
96 extern const char kChromeUISystemInfoURL[]; | 97 extern const char kChromeUISystemInfoURL[]; |
97 #endif | 98 #endif |
98 | 99 |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 // "Learn more" URL for the Privacy section under Options. | 191 // "Learn more" URL for the Privacy section under Options. |
191 extern const char kPrivacyLearnMoreURL[]; | 192 extern const char kPrivacyLearnMoreURL[]; |
192 | 193 |
193 // Call near the beginning of startup to register Chrome's internal URLs that | 194 // Call near the beginning of startup to register Chrome's internal URLs that |
194 // should be parsed as "standard" with the googleurl library. | 195 // should be parsed as "standard" with the googleurl library. |
195 void RegisterChromeSchemes(); | 196 void RegisterChromeSchemes(); |
196 | 197 |
197 } // namespace chrome | 198 } // namespace chrome |
198 | 199 |
199 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 200 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |