| 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 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 | 312 |
| 313 // Help URL for the settings page's search feature. | 313 // Help URL for the settings page's search feature. |
| 314 extern const char kSettingsSearchHelpURL[]; | 314 extern const char kSettingsSearchHelpURL[]; |
| 315 | 315 |
| 316 // "About" URL for the translate bar's options menu. | 316 // "About" URL for the translate bar's options menu. |
| 317 extern const char kAboutGoogleTranslateURL[]; | 317 extern const char kAboutGoogleTranslateURL[]; |
| 318 | 318 |
| 319 // Help URL for the Omnibox setting. | 319 // Help URL for the Omnibox setting. |
| 320 extern const char kOmniboxLearnMoreURL[]; | 320 extern const char kOmniboxLearnMoreURL[]; |
| 321 | 321 |
| 322 // "Learn more" URL for the Instant feature. | |
| 323 extern const char kInstantLearnMoreURL[]; | |
| 324 | |
| 325 // "What do these mean?" URL for the Page Info bubble. | 322 // "What do these mean?" URL for the Page Info bubble. |
| 326 extern const char kPageInfoHelpCenterURL[]; | 323 extern const char kPageInfoHelpCenterURL[]; |
| 327 | 324 |
| 328 // "Learn more" URL for "Aw snap" page. | 325 // "Learn more" URL for "Aw snap" page. |
| 329 extern const char kCrashReasonURL[]; | 326 extern const char kCrashReasonURL[]; |
| 330 | 327 |
| 331 // "Learn more" URL for killed tab page. | 328 // "Learn more" URL for killed tab page. |
| 332 extern const char kKillReasonURL[]; | 329 extern const char kKillReasonURL[]; |
| 333 | 330 |
| 334 // "Learn more" URL for the Privacy section under Options. | 331 // "Learn more" URL for the Privacy section under Options. |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 // Parameters that get appended to force SafeSearch. | 441 // Parameters that get appended to force SafeSearch. |
| 445 extern const char kSafeSearchSafeParameter[]; | 442 extern const char kSafeSearchSafeParameter[]; |
| 446 extern const char kSafeSearchSsuiParameter[]; | 443 extern const char kSafeSearchSsuiParameter[]; |
| 447 | 444 |
| 448 // The URL for the "Learn more" link in the media access infobar. | 445 // The URL for the "Learn more" link in the media access infobar. |
| 449 extern const char kMediaAccessLearnMoreUrl[]; | 446 extern const char kMediaAccessLearnMoreUrl[]; |
| 450 | 447 |
| 451 } // namespace chrome | 448 } // namespace chrome |
| 452 | 449 |
| 453 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 450 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |