| 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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 | 289 |
| 290 // The URL for the "Learn more" page for register protocol handler infobars. | 290 // The URL for the "Learn more" page for register protocol handler infobars. |
| 291 extern const char kLearnMoreRegisterProtocolHandlerURL[]; | 291 extern const char kLearnMoreRegisterProtocolHandlerURL[]; |
| 292 | 292 |
| 293 // The URL for the "Learn more" page for sync setup on the personal stuff page. | 293 // The URL for the "Learn more" page for sync setup on the personal stuff page. |
| 294 extern const char kSyncLearnMoreURL[]; | 294 extern const char kSyncLearnMoreURL[]; |
| 295 | 295 |
| 296 // The URL for the "Learn more" page for download scanning. | 296 // The URL for the "Learn more" page for download scanning. |
| 297 extern const char kDownloadScanningLearnMoreURL[]; | 297 extern const char kDownloadScanningLearnMoreURL[]; |
| 298 | 298 |
| 299 // The URL for the "Learn more" page on the sync setup dialog, when syncing |
| 300 // everything. |
| 301 extern const char kSyncEverythingLearnMoreURL[]; |
| 302 |
| 303 // The URL for information on how to recover your password. |
| 304 extern const char kInvalidPasswordHelpURL[]; |
| 305 |
| 306 // The URL for information on what to do if you can't sign in to your Google |
| 307 // account. |
| 308 extern const char kCanNotAccessAccountURL[]; |
| 309 |
| 310 // The URL for the "Learn more" page on sync encryption. |
| 311 extern const char kSyncEncryptionHelpURL[]; |
| 312 |
| 313 // The URL to create a new Google account via sync. |
| 314 extern const char kSyncCreateNewAccountURL[]; |
| 315 |
| 299 // "Debug" pages which are dangerous and not for general consumption. | 316 // "Debug" pages which are dangerous and not for general consumption. |
| 300 extern const char* const kChromeDebugURLs[]; | 317 extern const char* const kChromeDebugURLs[]; |
| 301 extern int kNumberOfChromeDebugURLs; | 318 extern int kNumberOfChromeDebugURLs; |
| 302 | 319 |
| 303 // Canonical schemes you can use as input to GURL.SchemeIs(). | 320 // Canonical schemes you can use as input to GURL.SchemeIs(). |
| 304 extern const char kExtensionScheme[]; | 321 extern const char kExtensionScheme[]; |
| 305 | 322 |
| 306 // Call near the beginning of startup to register Chrome's internal URLs that | 323 // Call near the beginning of startup to register Chrome's internal URLs that |
| 307 // should be parsed as "standard" with the googleurl library. | 324 // should be parsed as "standard" with the googleurl library. |
| 308 void RegisterChromeSchemes(); | 325 void RegisterChromeSchemes(); |
| 309 | 326 |
| 310 #if defined(OS_CHROMEOS) | 327 #if defined(OS_CHROMEOS) |
| 311 // "Learn more" URL for the Cloud Print section under Options. | 328 // "Learn more" URL for the Cloud Print section under Options. |
| 312 extern const char kCloudPrintLearnMoreURL[]; | 329 extern const char kCloudPrintLearnMoreURL[]; |
| 313 #endif | 330 #endif |
| 314 | 331 |
| 315 } // namespace chrome | 332 } // namespace chrome |
| 316 | 333 |
| 317 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 334 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |