OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 | 9 |
10 namespace chrome { | 10 namespace chrome { |
(...skipping 19 matching lines...) Expand all Loading... |
30 | 30 |
31 // Used to separate a standard scheme and the hostname: "://". | 31 // Used to separate a standard scheme and the hostname: "://". |
32 extern const char kStandardSchemeSeparator[]; | 32 extern const char kStandardSchemeSeparator[]; |
33 | 33 |
34 // About URLs (including schmes). | 34 // About URLs (including schmes). |
35 extern const char kAboutBlankURL[]; | 35 extern const char kAboutBlankURL[]; |
36 extern const char kAboutBrowserCrash[]; | 36 extern const char kAboutBrowserCrash[]; |
37 extern const char kAboutCacheURL[]; | 37 extern const char kAboutCacheURL[]; |
38 extern const char kAboutNetInternalURL[]; | 38 extern const char kAboutNetInternalURL[]; |
39 extern const char kAboutCrashURL[]; | 39 extern const char kAboutCrashURL[]; |
| 40 extern const char kAboutCreditsURL[]; |
40 extern const char kAboutHangURL[]; | 41 extern const char kAboutHangURL[]; |
41 extern const char kAboutMemoryURL[]; | 42 extern const char kAboutMemoryURL[]; |
42 extern const char kAboutShorthangURL[]; | 43 extern const char kAboutShorthangURL[]; |
| 44 extern const char kAboutTermsURL[]; |
43 | 45 |
44 // chrome: URLs (including schemes). Should be kept in sync with the | 46 // chrome: URLs (including schemes). Should be kept in sync with the |
45 // components below. | 47 // components below. |
46 extern const char kChromeUIDevToolsURL[]; | 48 extern const char kChromeUIDevToolsURL[]; |
47 extern const char kChromeUIDownloadsURL[]; | 49 extern const char kChromeUIDownloadsURL[]; |
48 extern const char kChromeUIExtensionsURL[]; | 50 extern const char kChromeUIExtensionsURL[]; |
49 extern const char kChromeUIHistoryURL[]; | 51 extern const char kChromeUIHistoryURL[]; |
50 extern const char kChromeUIIPCURL[]; | 52 extern const char kChromeUIIPCURL[]; |
51 extern const char kChromeUINetworkURL[]; | 53 extern const char kChromeUINetworkURL[]; |
52 extern const char kChromeUINewTabURL[]; | 54 extern const char kChromeUINewTabURL[]; |
(...skipping 14 matching lines...) Expand all Loading... |
67 // Sync related URL components. | 69 // Sync related URL components. |
68 extern const char kSyncResourcesHost[]; | 70 extern const char kSyncResourcesHost[]; |
69 extern const char kSyncGaiaLoginPath[]; | 71 extern const char kSyncGaiaLoginPath[]; |
70 extern const char kSyncMergeAndSyncPath[]; | 72 extern const char kSyncMergeAndSyncPath[]; |
71 extern const char kSyncThrobberPath[]; | 73 extern const char kSyncThrobberPath[]; |
72 extern const char kSyncSetupFlowPath[]; | 74 extern const char kSyncSetupFlowPath[]; |
73 | 75 |
74 } // namespace chrome | 76 } // namespace chrome |
75 | 77 |
76 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 78 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |