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 for SafeSearch when used as the single parameters. | |
Pam (message me for reviews)
2012/10/17 11:37:37
"Single" is a bit confusing here, since it contain
Sergiu
2012/10/17 14:48:58
Done.
| |
409 extern const char kSSearchParamsSingle[]; | |
410 // Parameters for SafeSearch when used as the last parameters. | |
411 extern const char kSSearchParamsMultiple[]; | |
412 | |
408 } // namespace chrome | 413 } // namespace chrome |
409 | 414 |
410 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 415 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |