| 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 19 matching lines...) Expand all Loading... |
| 30 extern const char kChromeUICrashesURL[]; | 30 extern const char kChromeUICrashesURL[]; |
| 31 extern const char kChromeUICrashURL[]; | 31 extern const char kChromeUICrashURL[]; |
| 32 extern const char kChromeUICreditsURL[]; | 32 extern const char kChromeUICreditsURL[]; |
| 33 extern const char kChromeUIDevToolsURL[]; | 33 extern const char kChromeUIDevToolsURL[]; |
| 34 extern const char kChromeUIDownloadsURL[]; | 34 extern const char kChromeUIDownloadsURL[]; |
| 35 extern const char kChromeUIExtensionIconURL[]; | 35 extern const char kChromeUIExtensionIconURL[]; |
| 36 extern const char kChromeUIExtensionsURL[]; | 36 extern const char kChromeUIExtensionsURL[]; |
| 37 extern const char kChromeUIFlagsURL[]; | 37 extern const char kChromeUIFlagsURL[]; |
| 38 extern const char kChromeUIFlashURL[]; | 38 extern const char kChromeUIFlashURL[]; |
| 39 extern const char kChromeUIFaviconURL[]; | 39 extern const char kChromeUIFaviconURL[]; |
| 40 extern const char kChromeUIGpuCleanURL[]; |
| 40 extern const char kChromeUIGpuCrashURL[]; | 41 extern const char kChromeUIGpuCrashURL[]; |
| 42 extern const char kChromeUIGpuHangURL[]; |
| 41 extern const char kChromeUIHangURL[]; | 43 extern const char kChromeUIHangURL[]; |
| 42 extern const char kChromeUIHistory2URL[]; | 44 extern const char kChromeUIHistory2URL[]; |
| 43 extern const char kChromeUIHistoryURL[]; | 45 extern const char kChromeUIHistoryURL[]; |
| 44 extern const char kChromeUIIPCURL[]; | 46 extern const char kChromeUIIPCURL[]; |
| 45 extern const char kChromeUIKeyboardURL[]; | 47 extern const char kChromeUIKeyboardURL[]; |
| 46 extern const char kChromeUIKillURL[]; | 48 extern const char kChromeUIKillURL[]; |
| 47 extern const char kChromeUIMemoryURL[]; | 49 extern const char kChromeUIMemoryURL[]; |
| 48 extern const char kChromeUIMemoryRedirectURL[]; | 50 extern const char kChromeUIMemoryRedirectURL[]; |
| 49 extern const char kChromeUINetworkViewCacheURL[]; | 51 extern const char kChromeUINetworkViewCacheURL[]; |
| 50 extern const char kChromeUINetInternalsURL[]; | 52 extern const char kChromeUINetInternalsURL[]; |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 | 252 |
| 251 // The URL for the "Learn more" page for the blocked plugin infobar. | 253 // The URL for the "Learn more" page for the blocked plugin infobar. |
| 252 extern const char kBlockedPluginLearnMoreURL[]; | 254 extern const char kBlockedPluginLearnMoreURL[]; |
| 253 | 255 |
| 254 // The URL for the "About Voice Recognition" menu item. | 256 // The URL for the "About Voice Recognition" menu item. |
| 255 extern const char kSpeechInputAboutURL[]; | 257 extern const char kSpeechInputAboutURL[]; |
| 256 | 258 |
| 257 // The URL for the "Learn more" page for register protocol handler infobars. | 259 // The URL for the "Learn more" page for register protocol handler infobars. |
| 258 extern const char kLearnMoreRegisterProtocolHandlerURL[]; | 260 extern const char kLearnMoreRegisterProtocolHandlerURL[]; |
| 259 | 261 |
| 262 // "Debug" pages which are dangerous and not for general consumption. |
| 263 extern const char* const kChromeDebugURLs[]; |
| 264 extern int kNumberOfChromeDebugURLs; |
| 265 |
| 260 // Call near the beginning of startup to register Chrome's internal URLs that | 266 // Call near the beginning of startup to register Chrome's internal URLs that |
| 261 // should be parsed as "standard" with the googleurl library. | 267 // should be parsed as "standard" with the googleurl library. |
| 262 void RegisterChromeSchemes(); | 268 void RegisterChromeSchemes(); |
| 263 | 269 |
| 264 #if defined(OS_CHROMEOS) | 270 #if defined(OS_CHROMEOS) |
| 265 // "Learn more" URL for the Cloud Print section under Options. | 271 // "Learn more" URL for the Cloud Print section under Options. |
| 266 extern const char kCloudPrintLearnMoreURL[]; | 272 extern const char kCloudPrintLearnMoreURL[]; |
| 267 #endif | 273 #endif |
| 268 | 274 |
| 269 } // namespace chrome | 275 } // namespace chrome |
| 270 | 276 |
| 271 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 277 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |