| 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 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 | 386 |
| 387 // The URL for the "Learn more" link in the Chrome To Mobile bubble. | 387 // The URL for the "Learn more" link in the Chrome To Mobile bubble. |
| 388 extern const char kChromeToMobileLearnMoreURL[]; | 388 extern const char kChromeToMobileLearnMoreURL[]; |
| 389 | 389 |
| 390 // The URL for the help article explaining sideload wipeout in more details. | 390 // The URL for the help article explaining sideload wipeout in more details. |
| 391 extern const char kSideloadWipeoutHelpURL[]; | 391 extern const char kSideloadWipeoutHelpURL[]; |
| 392 | 392 |
| 393 #if defined(OS_CHROMEOS) | 393 #if defined(OS_CHROMEOS) |
| 394 // The URL for the "Learn more" link for natural scrolling on ChromeOS. | 394 // The URL for the "Learn more" link for natural scrolling on ChromeOS. |
| 395 extern const char kNaturalScrollHelpURL[]; | 395 extern const char kNaturalScrollHelpURL[]; |
| 396 #endif | |
| 397 | 396 |
| 398 #if defined(OS_CHROMEOS) | |
| 399 // The URL for the Learn More page about enterprise enrolled devices. | 397 // The URL for the Learn More page about enterprise enrolled devices. |
| 400 extern const char kLearnMoreEnterpriseURL[]; | 398 extern const char kLearnMoreEnterpriseURL[]; |
| 401 #endif | 399 #endif |
| 402 | 400 |
| 403 // "Debug" pages which are dangerous and not for general consumption. | 401 // "Debug" pages which are dangerous and not for general consumption. |
| 404 extern const char* const kChromeDebugURLs[]; | 402 extern const char* const kChromeDebugURLs[]; |
| 405 extern const int kNumberOfChromeDebugURLs; | 403 extern const int kNumberOfChromeDebugURLs; |
| 406 | 404 |
| 407 // Canonical schemes you can use as input to GURL.SchemeIs(). | 405 // Canonical schemes you can use as input to GURL.SchemeIs(). |
| 408 extern const char kExtensionResourceScheme[]; | 406 extern const char kExtensionResourceScheme[]; |
| 409 | 407 |
| 410 #if defined(OS_CHROMEOS) | 408 extern const char kChromeSearchScheme[]; |
| 411 extern const char kDriveScheme[]; | |
| 412 #endif | |
| 413 | 409 |
| 414 #if defined(OS_CHROMEOS) | 410 #if defined(OS_CHROMEOS) |
| 411 extern const char kCrosScheme[]; |
| 412 extern const char kDriveScheme[]; |
| 413 |
| 415 // "Learn more" URL for the Cloud Print section under Options. | 414 // "Learn more" URL for the Cloud Print section under Options. |
| 416 extern const char kCloudPrintLearnMoreURL[]; | 415 extern const char kCloudPrintLearnMoreURL[]; |
| 417 #endif | 416 #endif |
| 418 | 417 |
| 419 // Parameters that get appended to force SafeSearch. | 418 // Parameters that get appended to force SafeSearch. |
| 420 extern const char kSafeSearchSafeParameter[]; | 419 extern const char kSafeSearchSafeParameter[]; |
| 421 extern const char kSafeSearchSsuiParameter[]; | 420 extern const char kSafeSearchSsuiParameter[]; |
| 422 | 421 |
| 423 // The URL for the "Learn more" link in the media access infobar. | 422 // The URL for the "Learn more" link in the media access infobar. |
| 424 extern const char kMediaAccessLearnMoreUrl[]; | 423 extern const char kMediaAccessLearnMoreUrl[]; |
| 425 | 424 |
| 426 } // namespace chrome | 425 } // namespace chrome |
| 427 | 426 |
| 428 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 427 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |