| 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 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 398 | 398 |
| 399 #if defined(OS_CHROMEOS) | 399 #if defined(OS_CHROMEOS) |
| 400 extern const char kDriveScheme[]; | 400 extern const char kDriveScheme[]; |
| 401 #endif | 401 #endif |
| 402 | 402 |
| 403 #if defined(OS_CHROMEOS) | 403 #if defined(OS_CHROMEOS) |
| 404 // "Learn more" URL for the Cloud Print section under Options. | 404 // "Learn more" URL for the Cloud Print section under Options. |
| 405 extern const char kCloudPrintLearnMoreURL[]; | 405 extern const char kCloudPrintLearnMoreURL[]; |
| 406 #endif | 406 #endif |
| 407 | 407 |
| 408 // Parameters that get appended to force SafeSearch |
| 409 extern const char kSafeSearchSafeParameter[]; |
| 410 extern const char kSafeSearchSsuiParameter[]; |
| 411 |
| 408 } // namespace chrome | 412 } // namespace chrome |
| 409 | 413 |
| 410 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 414 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |