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 #include "chrome/common/url_constants.h" | 5 #include "chrome/common/url_constants.h" |
6 | 6 |
7 #include "googleurl/src/url_util.h" | 7 #include "googleurl/src/url_util.h" |
8 | 8 |
9 namespace chrome { | 9 namespace chrome { |
10 | 10 |
(...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
420 "https://support.google.com/chrome/?p=settings_privacy"; | 420 "https://support.google.com/chrome/?p=settings_privacy"; |
421 #endif | 421 #endif |
422 | 422 |
423 const char kDoNotTrackLearnMoreURL[] = | 423 const char kDoNotTrackLearnMoreURL[] = |
424 #if defined(OS_CHROMEOS) | 424 #if defined(OS_CHROMEOS) |
425 "https://support.google.com/chromeos/?p=settings_do_not_track"; | 425 "https://support.google.com/chromeos/?p=settings_do_not_track"; |
426 #else | 426 #else |
427 "https://support.google.com/chrome/?p=settings_do_not_track"; | 427 "https://support.google.com/chrome/?p=settings_do_not_track"; |
428 #endif | 428 #endif |
429 | 429 |
430 const char kSessionRestoreLearnMoreURL[] = | |
431 "https://support.google.com/chrome/?p=settings_reopen_pages"; | |
432 | |
433 const char kChromiumProjectURL[] = "http://code.google.com/chromium/"; | 430 const char kChromiumProjectURL[] = "http://code.google.com/chromium/"; |
434 | 431 |
435 const char kLearnMoreReportingURL[] = | 432 const char kLearnMoreReportingURL[] = |
436 "https://support.google.com/chrome/?p=ui_usagestat"; | 433 "https://support.google.com/chrome/?p=ui_usagestat"; |
437 | 434 |
438 const char kOutdatedPluginLearnMoreURL[] = | 435 const char kOutdatedPluginLearnMoreURL[] = |
439 "https://support.google.com/chrome/?p=ib_outdated_plugin"; | 436 "https://support.google.com/chrome/?p=ib_outdated_plugin"; |
440 | 437 |
441 const char kBlockedPluginLearnMoreURL[] = | 438 const char kBlockedPluginLearnMoreURL[] = |
442 "https://support.google.com/chrome/?p=ib_blocked_plugin"; | 439 "https://support.google.com/chrome/?p=ib_blocked_plugin"; |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
499 kChromeUIGpuCrashURL, | 496 kChromeUIGpuCrashURL, |
500 kChromeUIGpuHangURL, | 497 kChromeUIGpuHangURL, |
501 }; | 498 }; |
502 const int kNumberOfChromeDebugURLs = | 499 const int kNumberOfChromeDebugURLs = |
503 static_cast<int>(arraysize(kChromeDebugURLs)); | 500 static_cast<int>(arraysize(kChromeDebugURLs)); |
504 | 501 |
505 const char kExtensionScheme[] = "chrome-extension"; | 502 const char kExtensionScheme[] = "chrome-extension"; |
506 const char kExtensionResourceScheme[] = "chrome-extension-resource"; | 503 const char kExtensionResourceScheme[] = "chrome-extension-resource"; |
507 | 504 |
508 } // namespace chrome | 505 } // namespace chrome |
OLD | NEW |