| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 extern const char kChromeUINewTabURL[]; | 54 extern const char kChromeUINewTabURL[]; |
| 55 extern const char kChromeUIPluginsURL[]; | 55 extern const char kChromeUIPluginsURL[]; |
| 56 extern const char kChromeUIPrintURL[]; | 56 extern const char kChromeUIPrintURL[]; |
| 57 extern const char kChromeUISessionsURL[]; | 57 extern const char kChromeUISessionsURL[]; |
| 58 extern const char kChromeUISettingsURL[]; | 58 extern const char kChromeUISettingsURL[]; |
| 59 extern const char kChromeUIShorthangURL[]; | 59 extern const char kChromeUIShorthangURL[]; |
| 60 extern const char kChromeUITaskManagerURL[]; | 60 extern const char kChromeUITaskManagerURL[]; |
| 61 extern const char kChromeUITermsURL[]; | 61 extern const char kChromeUITermsURL[]; |
| 62 extern const char kChromeUITextfieldsURL[]; | 62 extern const char kChromeUITextfieldsURL[]; |
| 63 extern const char kChromeUIVersionURL[]; | 63 extern const char kChromeUIVersionURL[]; |
| 64 extern const char kChromeUIWorkersURL[]; |
| 64 | 65 |
| 65 #if defined(OS_CHROMEOS) | 66 #if defined(OS_CHROMEOS) |
| 66 extern const char kChromeUIActivationMessage[]; | 67 extern const char kChromeUIActivationMessage[]; |
| 67 extern const char kChromeUIActiveDownloadsURL[]; | 68 extern const char kChromeUIActiveDownloadsURL[]; |
| 68 extern const char kChromeUIChooseMobileNetworkURL[]; | 69 extern const char kChromeUIChooseMobileNetworkURL[]; |
| 69 extern const char kChromeUICollectedCookiesURL[]; | 70 extern const char kChromeUICollectedCookiesURL[]; |
| 70 extern const char kChromeUIHttpAuthURL[]; | 71 extern const char kChromeUIHttpAuthURL[]; |
| 71 extern const char kChromeUIImageBurnerURL[]; | 72 extern const char kChromeUIImageBurnerURL[]; |
| 72 extern const char kChromeUIKeyboardOverlayURL[]; | 73 extern const char kChromeUIKeyboardOverlayURL[]; |
| 73 extern const char kChromeUIMediaplayerURL[]; | 74 extern const char kChromeUIMediaplayerURL[]; |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 // The URL for the "Learn more" page for the blocked plugin infobar. | 245 // The URL for the "Learn more" page for the blocked plugin infobar. |
| 245 extern const char kBlockedPluginLearnMoreURL[]; | 246 extern const char kBlockedPluginLearnMoreURL[]; |
| 246 | 247 |
| 247 // Call near the beginning of startup to register Chrome's internal URLs that | 248 // Call near the beginning of startup to register Chrome's internal URLs that |
| 248 // should be parsed as "standard" with the googleurl library. | 249 // should be parsed as "standard" with the googleurl library. |
| 249 void RegisterChromeSchemes(); | 250 void RegisterChromeSchemes(); |
| 250 | 251 |
| 251 } // namespace chrome | 252 } // namespace chrome |
| 252 | 253 |
| 253 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 254 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |