| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 extern const char kSyncCreateNewAccountURL[]; | 365 extern const char kSyncCreateNewAccountURL[]; |
| 366 | 366 |
| 367 // The URL for the "Learn more" link in the Chrome To Mobile bubble. | 367 // The URL for the "Learn more" link in the Chrome To Mobile bubble. |
| 368 extern const char kChromeToMobileLearnMoreURL[]; | 368 extern const char kChromeToMobileLearnMoreURL[]; |
| 369 | 369 |
| 370 #if defined(OS_CHROMEOS) | 370 #if defined(OS_CHROMEOS) |
| 371 // The URL for the "Learn more" link for natural scrolling on ChromeOS. | 371 // The URL for the "Learn more" link for natural scrolling on ChromeOS. |
| 372 extern const char kNaturalScrollHelpURL[]; | 372 extern const char kNaturalScrollHelpURL[]; |
| 373 #endif | 373 #endif |
| 374 | 374 |
| 375 #if defined(OS_MACOSX) | |
| 376 // The URL for the Mac OS X 10.5 deprecation help center article. | |
| 377 extern const char kMacLeopardObsoleteURL[]; | |
| 378 #endif | |
| 379 | |
| 380 // "Debug" pages which are dangerous and not for general consumption. | 375 // "Debug" pages which are dangerous and not for general consumption. |
| 381 extern const char* const kChromeDebugURLs[]; | 376 extern const char* const kChromeDebugURLs[]; |
| 382 extern const int kNumberOfChromeDebugURLs; | 377 extern const int kNumberOfChromeDebugURLs; |
| 383 | 378 |
| 384 // Canonical schemes you can use as input to GURL.SchemeIs(). | 379 // Canonical schemes you can use as input to GURL.SchemeIs(). |
| 385 extern const char kExtensionScheme[]; | 380 extern const char kExtensionScheme[]; |
| 386 | 381 |
| 387 // Canonical schemes you can use as input to GURL.SchemeIs(). | 382 // Canonical schemes you can use as input to GURL.SchemeIs(). |
| 388 extern const char kExtensionResourceScheme[]; | 383 extern const char kExtensionResourceScheme[]; |
| 389 | 384 |
| 390 #if defined(OS_CHROMEOS) | 385 #if defined(OS_CHROMEOS) |
| 391 extern const char kDriveScheme[]; | 386 extern const char kDriveScheme[]; |
| 392 #endif | 387 #endif |
| 393 #if defined(OS_ANDROID) | 388 #if defined(OS_ANDROID) |
| 394 extern const char kContentScheme[]; | 389 extern const char kContentScheme[]; |
| 395 // Special Android file paths. | 390 // Special Android file paths. |
| 396 extern const char kAndroidAssetPath[]; | 391 extern const char kAndroidAssetPath[]; |
| 397 extern const char kAndroidResourcePath[]; | 392 extern const char kAndroidResourcePath[]; |
| 398 #endif | 393 #endif |
| 399 | 394 |
| 400 #if defined(OS_CHROMEOS) | 395 #if defined(OS_CHROMEOS) |
| 401 // "Learn more" URL for the Cloud Print section under Options. | 396 // "Learn more" URL for the Cloud Print section under Options. |
| 402 extern const char kCloudPrintLearnMoreURL[]; | 397 extern const char kCloudPrintLearnMoreURL[]; |
| 403 #endif | 398 #endif |
| 404 | 399 |
| 405 } // namespace chrome | 400 } // namespace chrome |
| 406 | 401 |
| 407 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 402 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |