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