| 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 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 | 406 |
| 407 #if defined(OS_CHROMEOS) | 407 #if defined(OS_CHROMEOS) |
| 408 extern const char kDriveScheme[]; | 408 extern const char kDriveScheme[]; |
| 409 #endif | 409 #endif |
| 410 | 410 |
| 411 #if defined(OS_CHROMEOS) | 411 #if defined(OS_CHROMEOS) |
| 412 // "Learn more" URL for the Cloud Print section under Options. | 412 // "Learn more" URL for the Cloud Print section under Options. |
| 413 extern const char kCloudPrintLearnMoreURL[]; | 413 extern const char kCloudPrintLearnMoreURL[]; |
| 414 #endif | 414 #endif |
| 415 | 415 |
| 416 // Parameters that get appended to force SafeSearch. |
| 417 extern const char kSafeSearchSafeParameter[]; |
| 418 extern const char kSafeSearchSsuiParameter[]; |
| 419 |
| 416 } // namespace chrome | 420 } // namespace chrome |
| 417 | 421 |
| 418 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 422 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |