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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
392 #endif | 392 #endif |
393 | 393 |
394 const char kPrivacyLearnMoreURL[] = | 394 const char kPrivacyLearnMoreURL[] = |
395 #if defined(OS_CHROMEOS) | 395 #if defined(OS_CHROMEOS) |
396 "https://support.google.com/chromeos/?p=settings_privacy"; | 396 "https://support.google.com/chromeos/?p=settings_privacy"; |
397 #else | 397 #else |
398 "https://support.google.com/chrome/?p=settings_privacy"; | 398 "https://support.google.com/chrome/?p=settings_privacy"; |
399 #endif | 399 #endif |
400 | 400 |
401 const char kSessionRestoreLearnMoreURL[] = | 401 const char kSessionRestoreLearnMoreURL[] = |
402 "http://support.google.com/chrome/bin/answer.py?answer=95421"; | 402 "https://support.google.com/chrome/?p=settings_reopen_pages"; |
403 | 403 |
404 const char kChromiumProjectURL[] = "http://code.google.com/chromium/"; | 404 const char kChromiumProjectURL[] = "http://code.google.com/chromium/"; |
405 | 405 |
406 const char kLearnMoreReportingURL[] = | 406 const char kLearnMoreReportingURL[] = |
407 "https://support.google.com/chrome/?p=ui_usagestat"; | 407 "https://support.google.com/chrome/?p=ui_usagestat"; |
408 | 408 |
409 const char kOutdatedPluginLearnMoreURL[] = | 409 const char kOutdatedPluginLearnMoreURL[] = |
410 "https://support.google.com/chrome/?p=ib_outdated_plugin"; | 410 "https://support.google.com/chrome/?p=ib_outdated_plugin"; |
411 | 411 |
412 const char kBlockedPluginLearnMoreURL[] = | 412 const char kBlockedPluginLearnMoreURL[] = |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
472 kChromeUIGpuCrashURL, | 472 kChromeUIGpuCrashURL, |
473 kChromeUIGpuHangURL, | 473 kChromeUIGpuHangURL, |
474 }; | 474 }; |
475 const int kNumberOfChromeDebugURLs = | 475 const int kNumberOfChromeDebugURLs = |
476 static_cast<int>(arraysize(kChromeDebugURLs)); | 476 static_cast<int>(arraysize(kChromeDebugURLs)); |
477 | 477 |
478 const char kExtensionScheme[] = "chrome-extension"; | 478 const char kExtensionScheme[] = "chrome-extension"; |
479 const char kExtensionResourceScheme[] = "chrome-extension-resource"; | 479 const char kExtensionResourceScheme[] = "chrome-extension-resource"; |
480 | 480 |
481 } // namespace chrome | 481 } // namespace chrome |
OLD | NEW |