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 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
345 // The URL for the "Learn more" link for natural scrolling on ChromeOS. | 345 // The URL for the "Learn more" link for natural scrolling on ChromeOS. |
346 extern const char kNaturalScrollHelpURL[]; | 346 extern const char kNaturalScrollHelpURL[]; |
347 #endif | 347 #endif |
348 | 348 |
349 // "Debug" pages which are dangerous and not for general consumption. | 349 // "Debug" pages which are dangerous and not for general consumption. |
350 extern const char* const kChromeDebugURLs[]; | 350 extern const char* const kChromeDebugURLs[]; |
351 extern int kNumberOfChromeDebugURLs; | 351 extern int kNumberOfChromeDebugURLs; |
352 | 352 |
353 // Canonical schemes you can use as input to GURL.SchemeIs(). | 353 // Canonical schemes you can use as input to GURL.SchemeIs(). |
354 extern const char kExtensionScheme[]; | 354 extern const char kExtensionScheme[]; |
| 355 |
| 356 // Canonical schemes you can use as input to GURL.SchemeIs(). |
| 357 extern const char kExtensionResourceScheme[]; |
| 358 |
355 #if defined(OS_CHROMEOS) | 359 #if defined(OS_CHROMEOS) |
356 extern const char kDriveScheme[]; | 360 extern const char kDriveScheme[]; |
357 #endif | 361 #endif |
358 #if defined(OS_ANDROID) | 362 #if defined(OS_ANDROID) |
359 extern const char kContentScheme[]; | 363 extern const char kContentScheme[]; |
360 #endif | 364 #endif |
361 | 365 |
362 #if defined(OS_CHROMEOS) | 366 #if defined(OS_CHROMEOS) |
363 // "Learn more" URL for the Cloud Print section under Options. | 367 // "Learn more" URL for the Cloud Print section under Options. |
364 extern const char kCloudPrintLearnMoreURL[]; | 368 extern const char kCloudPrintLearnMoreURL[]; |
365 #endif | 369 #endif |
366 | 370 |
367 } // namespace chrome | 371 } // namespace chrome |
368 | 372 |
369 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 373 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |