| 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 28 matching lines...) Expand all Loading... |
| 39 extern const char kAboutNetInternalsURL[]; | 39 extern const char kAboutNetInternalsURL[]; |
| 40 extern const char kAboutCrashURL[]; | 40 extern const char kAboutCrashURL[]; |
| 41 extern const char kAboutCreditsURL[]; | 41 extern const char kAboutCreditsURL[]; |
| 42 extern const char kAboutHangURL[]; | 42 extern const char kAboutHangURL[]; |
| 43 extern const char kAboutMemoryURL[]; | 43 extern const char kAboutMemoryURL[]; |
| 44 extern const char kAboutShorthangURL[]; | 44 extern const char kAboutShorthangURL[]; |
| 45 extern const char kAboutTermsURL[]; | 45 extern const char kAboutTermsURL[]; |
| 46 | 46 |
| 47 // chrome: URLs (including schemes). Should be kept in sync with the | 47 // chrome: URLs (including schemes). Should be kept in sync with the |
| 48 // components below. | 48 // components below. |
| 49 extern const char kChromeUIBookmarksURL[]; |
| 49 extern const char kChromeUIDevToolsURL[]; | 50 extern const char kChromeUIDevToolsURL[]; |
| 50 extern const char kChromeUIDownloadsURL[]; | 51 extern const char kChromeUIDownloadsURL[]; |
| 51 extern const char kChromeUIExtensionsURL[]; | 52 extern const char kChromeUIExtensionsURL[]; |
| 52 extern const char kChromeUIHistoryURL[]; | 53 extern const char kChromeUIHistoryURL[]; |
| 53 extern const char kChromeUIFileBrowseURL[]; | 54 extern const char kChromeUIFileBrowseURL[]; |
| 54 extern const char kChromeUIIPCURL[]; | 55 extern const char kChromeUIIPCURL[]; |
| 55 extern const char kChromeUINetworkURL[]; | 56 extern const char kChromeUINetworkURL[]; |
| 56 extern const char kChromeUINewTabURL[]; | 57 extern const char kChromeUINewTabURL[]; |
| 57 | 58 |
| 58 // chrome components of URLs. Should be kept in sync with the full URLs | 59 // chrome components of URLs. Should be kept in sync with the full URLs |
| 59 // above. | 60 // above. |
| 61 extern const char kChromeUIBookmarksHost[]; |
| 60 extern const char kChromeUIDevToolsHost[]; | 62 extern const char kChromeUIDevToolsHost[]; |
| 61 extern const char kChromeUIDialogHost[]; | 63 extern const char kChromeUIDialogHost[]; |
| 62 extern const char kChromeUIDownloadsHost[]; | 64 extern const char kChromeUIDownloadsHost[]; |
| 63 extern const char kChromeUIExtensionsHost[]; | 65 extern const char kChromeUIExtensionsHost[]; |
| 64 extern const char kChromeUIFavIconPath[]; | 66 extern const char kChromeUIFavIconPath[]; |
| 65 extern const char kChromeUIHistoryHost[]; | 67 extern const char kChromeUIHistoryHost[]; |
| 66 extern const char kChromeUIFileBrowseHost[]; | 68 extern const char kChromeUIFileBrowseHost[]; |
| 67 extern const char kChromeUIInspectorHost[]; | 69 extern const char kChromeUIInspectorHost[]; |
| 68 extern const char kChromeUINewTabHost[]; | 70 extern const char kChromeUINewTabHost[]; |
| 69 extern const char kChromeUIThumbnailPath[]; | 71 extern const char kChromeUIThumbnailPath[]; |
| 70 extern const char kChromeUIThemePath[]; | 72 extern const char kChromeUIThemePath[]; |
| 71 | 73 |
| 72 // Sync related URL components. | 74 // Sync related URL components. |
| 73 extern const char kSyncResourcesHost[]; | 75 extern const char kSyncResourcesHost[]; |
| 74 extern const char kSyncGaiaLoginPath[]; | 76 extern const char kSyncGaiaLoginPath[]; |
| 75 extern const char kSyncMergeAndSyncPath[]; | 77 extern const char kSyncMergeAndSyncPath[]; |
| 76 extern const char kSyncThrobberPath[]; | 78 extern const char kSyncThrobberPath[]; |
| 77 extern const char kSyncSetupFlowPath[]; | 79 extern const char kSyncSetupFlowPath[]; |
| 78 extern const char kSyncSetupDonePath[]; | 80 extern const char kSyncSetupDonePath[]; |
| 79 | 81 |
| 80 // Network related URLs. | 82 // Network related URLs. |
| 81 extern const char kNetworkViewCacheURL[]; | 83 extern const char kNetworkViewCacheURL[]; |
| 82 extern const char kNetworkViewInternalsURL[]; | 84 extern const char kNetworkViewInternalsURL[]; |
| 83 | 85 |
| 84 } // namespace chrome | 86 } // namespace chrome |
| 85 | 87 |
| 86 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 88 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |