OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 29 matching lines...) Expand all Loading... |
40 extern const char kChromeUIGpuCrashURL[]; | 40 extern const char kChromeUIGpuCrashURL[]; |
41 extern const char kChromeUIHangURL[]; | 41 extern const char kChromeUIHangURL[]; |
42 extern const char kChromeUIHistory2URL[]; | 42 extern const char kChromeUIHistory2URL[]; |
43 extern const char kChromeUIHistoryURL[]; | 43 extern const char kChromeUIHistoryURL[]; |
44 extern const char kChromeUIIPCURL[]; | 44 extern const char kChromeUIIPCURL[]; |
45 extern const char kChromeUIKeyboardURL[]; | 45 extern const char kChromeUIKeyboardURL[]; |
46 extern const char kChromeUIKillURL[]; | 46 extern const char kChromeUIKillURL[]; |
47 extern const char kChromeUIMemoryURL[]; | 47 extern const char kChromeUIMemoryURL[]; |
48 extern const char kChromeUIMemoryRedirectURL[]; | 48 extern const char kChromeUIMemoryRedirectURL[]; |
49 extern const char kChromeUINetworkViewCacheURL[]; | 49 extern const char kChromeUINetworkViewCacheURL[]; |
| 50 extern const char kChromeUINetInternalsURL[]; |
50 extern const char kChromeUINewProfile[]; | 51 extern const char kChromeUINewProfile[]; |
51 extern const char kChromeUINewTabURL[]; | 52 extern const char kChromeUINewTabURL[]; |
52 extern const char kChromeUIPluginsURL[]; | 53 extern const char kChromeUIPluginsURL[]; |
53 extern const char kChromeUIPrintURL[]; | 54 extern const char kChromeUIPrintURL[]; |
54 extern const char kChromeUISessionsURL[]; | 55 extern const char kChromeUISessionsURL[]; |
55 extern const char kChromeUISettingsURL[]; | 56 extern const char kChromeUISettingsURL[]; |
56 extern const char kChromeUIShorthangURL[]; | 57 extern const char kChromeUIShorthangURL[]; |
57 extern const char kChromeUITaskManagerURL[]; | 58 extern const char kChromeUITaskManagerURL[]; |
58 extern const char kChromeUITermsURL[]; | 59 extern const char kChromeUITermsURL[]; |
59 extern const char kChromeUITextfieldsURL[]; | 60 extern const char kChromeUITextfieldsURL[]; |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 void RegisterChromeSchemes(); | 262 void RegisterChromeSchemes(); |
262 | 263 |
263 #if defined(OS_CHROMEOS) | 264 #if defined(OS_CHROMEOS) |
264 // "Learn more" URL for the Cloud Print section under Options. | 265 // "Learn more" URL for the Cloud Print section under Options. |
265 extern const char kCloudPrintLearnMoreURL[]; | 266 extern const char kCloudPrintLearnMoreURL[]; |
266 #endif | 267 #endif |
267 | 268 |
268 } // namespace chrome | 269 } // namespace chrome |
269 | 270 |
270 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 271 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |