| 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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 | 270 |
| 271 // The URL for the "Learn more" page for the blocked plugin infobar. | 271 // The URL for the "Learn more" page for the blocked plugin infobar. |
| 272 extern const char kBlockedPluginLearnMoreURL[]; | 272 extern const char kBlockedPluginLearnMoreURL[]; |
| 273 | 273 |
| 274 // The URL for the "About Voice Recognition" menu item. | 274 // The URL for the "About Voice Recognition" menu item. |
| 275 extern const char kSpeechInputAboutURL[]; | 275 extern const char kSpeechInputAboutURL[]; |
| 276 | 276 |
| 277 // The URL for the "Learn more" page for register protocol handler infobars. | 277 // The URL for the "Learn more" page for register protocol handler infobars. |
| 278 extern const char kLearnMoreRegisterProtocolHandlerURL[]; | 278 extern const char kLearnMoreRegisterProtocolHandlerURL[]; |
| 279 | 279 |
| 280 // The URL for the "Learn more" page for sync setup on the personal stuff page. |
| 281 extern const char kSyncLearnMoreURL[]; |
| 282 |
| 280 // "Debug" pages which are dangerous and not for general consumption. | 283 // "Debug" pages which are dangerous and not for general consumption. |
| 281 extern const char* const kChromeDebugURLs[]; | 284 extern const char* const kChromeDebugURLs[]; |
| 282 extern int kNumberOfChromeDebugURLs; | 285 extern int kNumberOfChromeDebugURLs; |
| 283 | 286 |
| 284 // Call near the beginning of startup to register Chrome's internal URLs that | 287 // Call near the beginning of startup to register Chrome's internal URLs that |
| 285 // should be parsed as "standard" with the googleurl library. | 288 // should be parsed as "standard" with the googleurl library. |
| 286 void RegisterChromeSchemes(); | 289 void RegisterChromeSchemes(); |
| 287 | 290 |
| 288 #if defined(OS_CHROMEOS) | 291 #if defined(OS_CHROMEOS) |
| 289 // "Learn more" URL for the Cloud Print section under Options. | 292 // "Learn more" URL for the Cloud Print section under Options. |
| 290 extern const char kCloudPrintLearnMoreURL[]; | 293 extern const char kCloudPrintLearnMoreURL[]; |
| 291 #endif | 294 #endif |
| 292 | 295 |
| 293 } // namespace chrome | 296 } // namespace chrome |
| 294 | 297 |
| 295 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 298 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |