| 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 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 | 317 |
| 318 // "What do these mean?" URL for the Page Info bubble. | 318 // "What do these mean?" URL for the Page Info bubble. |
| 319 extern const char kPageInfoHelpCenterURL[]; | 319 extern const char kPageInfoHelpCenterURL[]; |
| 320 | 320 |
| 321 // "Learn more" URL for "Aw snap" page. | 321 // "Learn more" URL for "Aw snap" page. |
| 322 extern const char kCrashReasonURL[]; | 322 extern const char kCrashReasonURL[]; |
| 323 | 323 |
| 324 // "Learn more" URL for killed tab page. | 324 // "Learn more" URL for killed tab page. |
| 325 extern const char kKillReasonURL[]; | 325 extern const char kKillReasonURL[]; |
| 326 | 326 |
| 327 #if defined(OS_WIN) |
| 328 // "Learn more" URL for the Win8 Data Privacy section under Options. |
| 329 extern const char kPrivacyWin8DataLearnMoreURL[]; |
| 330 #endif |
| 331 |
| 327 // "Learn more" URL for the Privacy section under Options. | 332 // "Learn more" URL for the Privacy section under Options. |
| 328 extern const char kPrivacyLearnMoreURL[]; | 333 extern const char kPrivacyLearnMoreURL[]; |
| 329 | 334 |
| 330 // "Learn more" URL for the Continue where I left off startup option under | 335 // "Learn more" URL for the Continue where I left off startup option under |
| 331 // Options. | 336 // Options. |
| 332 extern const char kSessionRestoreLearnMoreURL[]; | 337 extern const char kSessionRestoreLearnMoreURL[]; |
| 333 | 338 |
| 334 // The URL for the Chromium project used in the About dialog. | 339 // The URL for the Chromium project used in the About dialog. |
| 335 extern const char kChromiumProjectURL[]; | 340 extern const char kChromiumProjectURL[]; |
| 336 | 341 |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 #endif | 411 #endif |
| 407 | 412 |
| 408 #if defined(OS_CHROMEOS) | 413 #if defined(OS_CHROMEOS) |
| 409 // "Learn more" URL for the Cloud Print section under Options. | 414 // "Learn more" URL for the Cloud Print section under Options. |
| 410 extern const char kCloudPrintLearnMoreURL[]; | 415 extern const char kCloudPrintLearnMoreURL[]; |
| 411 #endif | 416 #endif |
| 412 | 417 |
| 413 } // namespace chrome | 418 } // namespace chrome |
| 414 | 419 |
| 415 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 420 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |