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 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
382 extern const char kExtensionScheme[]; | 382 extern const char kExtensionScheme[]; |
383 | 383 |
384 // Canonical schemes you can use as input to GURL.SchemeIs(). | 384 // Canonical schemes you can use as input to GURL.SchemeIs(). |
385 extern const char kExtensionResourceScheme[]; | 385 extern const char kExtensionResourceScheme[]; |
386 | 386 |
387 #if defined(OS_CHROMEOS) | 387 #if defined(OS_CHROMEOS) |
388 extern const char kDriveScheme[]; | 388 extern const char kDriveScheme[]; |
389 #endif | 389 #endif |
390 #if defined(OS_ANDROID) | 390 #if defined(OS_ANDROID) |
391 extern const char kContentScheme[]; | 391 extern const char kContentScheme[]; |
| 392 // Special Android file paths. |
| 393 extern const char kAndroidAssetPath[]; |
| 394 extern const char kAndroidResourcePath[]; |
392 #endif | 395 #endif |
393 | 396 |
394 #if defined(OS_CHROMEOS) | 397 #if defined(OS_CHROMEOS) |
395 // "Learn more" URL for the Cloud Print section under Options. | 398 // "Learn more" URL for the Cloud Print section under Options. |
396 extern const char kCloudPrintLearnMoreURL[]; | 399 extern const char kCloudPrintLearnMoreURL[]; |
397 #endif | 400 #endif |
398 | 401 |
399 } // namespace chrome | 402 } // namespace chrome |
400 | 403 |
401 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 404 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |