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 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 extern const char kExtensionScheme[]; | 400 extern const char kExtensionScheme[]; |
401 | 401 |
402 // Canonical schemes you can use as input to GURL.SchemeIs(). | 402 // Canonical schemes you can use as input to GURL.SchemeIs(). |
403 extern const char kExtensionResourceScheme[]; | 403 extern const char kExtensionResourceScheme[]; |
404 | 404 |
405 #if defined(OS_CHROMEOS) | 405 #if defined(OS_CHROMEOS) |
406 extern const char kDriveScheme[]; | 406 extern const char kDriveScheme[]; |
407 #endif | 407 #endif |
408 | 408 |
409 #if defined(OS_ANDROID) | 409 #if defined(OS_ANDROID) |
410 extern const char kContentScheme[]; | |
411 // Special Android file paths. | 410 // Special Android file paths. |
412 extern const char kAndroidAssetPath[]; | 411 extern const char kAndroidAssetPath[]; |
413 extern const char kAndroidResourcePath[]; | 412 extern const char kAndroidResourcePath[]; |
414 #endif | 413 #endif |
415 | 414 |
416 #if defined(OS_CHROMEOS) | 415 #if defined(OS_CHROMEOS) |
417 // "Learn more" URL for the Cloud Print section under Options. | 416 // "Learn more" URL for the Cloud Print section under Options. |
418 extern const char kCloudPrintLearnMoreURL[]; | 417 extern const char kCloudPrintLearnMoreURL[]; |
419 #endif | 418 #endif |
420 | 419 |
421 } // namespace chrome | 420 } // namespace chrome |
422 | 421 |
423 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 422 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |