| 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 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 471 | 471 |
| 472 const char kSyncErrorsHelpURL[] = | 472 const char kSyncErrorsHelpURL[] = |
| 473 "https://support.google.com/chrome/?p=settings_sync_error"; | 473 "https://support.google.com/chrome/?p=settings_sync_error"; |
| 474 | 474 |
| 475 const char kSyncCreateNewAccountURL[] = | 475 const char kSyncCreateNewAccountURL[] = |
| 476 "https://accounts.google.com/NewAccount?service=chromiumsync"; | 476 "https://accounts.google.com/NewAccount?service=chromiumsync"; |
| 477 | 477 |
| 478 const char kChromeToMobileLearnMoreURL[] = | 478 const char kChromeToMobileLearnMoreURL[] = |
| 479 "https://support.google.com/chrome/?p=ib_chrome_to_mobile"; | 479 "https://support.google.com/chrome/?p=ib_chrome_to_mobile"; |
| 480 | 480 |
| 481 const char kSideloadWipeoutHelpURL[] = |
| 482 "https://support.google.com/chrome/?p=ui_remove_non_cws_extensions"; |
| 483 |
| 481 #if defined(OS_CHROMEOS) | 484 #if defined(OS_CHROMEOS) |
| 482 const char kNaturalScrollHelpURL[] = | 485 const char kNaturalScrollHelpURL[] = |
| 483 "https://support.google.com/chromeos/?p=simple_scrolling"; | 486 "https://support.google.com/chromeos/?p=simple_scrolling"; |
| 484 #endif | 487 #endif |
| 485 | 488 |
| 486 const char* const kChromeDebugURLs[] = { | 489 const char* const kChromeDebugURLs[] = { |
| 487 kChromeUICrashURL, | 490 kChromeUICrashURL, |
| 488 kChromeUIKillURL, | 491 kChromeUIKillURL, |
| 489 kChromeUIHangURL, | 492 kChromeUIHangURL, |
| 490 kChromeUIShorthangURL, | 493 kChromeUIShorthangURL, |
| 491 kChromeUIGpuCleanURL, | 494 kChromeUIGpuCleanURL, |
| 492 kChromeUIGpuCrashURL, | 495 kChromeUIGpuCrashURL, |
| 493 kChromeUIGpuHangURL, | 496 kChromeUIGpuHangURL, |
| 494 }; | 497 }; |
| 495 const int kNumberOfChromeDebugURLs = | 498 const int kNumberOfChromeDebugURLs = |
| 496 static_cast<int>(arraysize(kChromeDebugURLs)); | 499 static_cast<int>(arraysize(kChromeDebugURLs)); |
| 497 | 500 |
| 498 const char kExtensionScheme[] = "chrome-extension"; | 501 const char kExtensionScheme[] = "chrome-extension"; |
| 499 const char kExtensionResourceScheme[] = "chrome-extension-resource"; | 502 const char kExtensionResourceScheme[] = "chrome-extension-resource"; |
| 500 | 503 |
| 501 } // namespace chrome | 504 } // namespace chrome |
| OLD | NEW |