| 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 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 "https://accounts.google.com/NewAccount?service=chromiumsync"; | 458 "https://accounts.google.com/NewAccount?service=chromiumsync"; |
| 459 | 459 |
| 460 const char kChromeToMobileLearnMoreURL[] = | 460 const char kChromeToMobileLearnMoreURL[] = |
| 461 "https://support.google.com/chrome/?p=ib_chrome_to_mobile"; | 461 "https://support.google.com/chrome/?p=ib_chrome_to_mobile"; |
| 462 | 462 |
| 463 #if defined(OS_CHROMEOS) | 463 #if defined(OS_CHROMEOS) |
| 464 const char kNaturalScrollHelpURL[] = | 464 const char kNaturalScrollHelpURL[] = |
| 465 "https://support.google.com/chromeos/?p=simple_scrolling"; | 465 "https://support.google.com/chromeos/?p=simple_scrolling"; |
| 466 #endif | 466 #endif |
| 467 | 467 |
| 468 #if defined(OS_MACOSX) | |
| 469 const char kMacLeopardObsoleteURL[] = | |
| 470 "https://support.google.com/chrome/?p=ui_mac_leopard_support"; | |
| 471 #endif | |
| 472 | |
| 473 const char* const kChromeDebugURLs[] = { | 468 const char* const kChromeDebugURLs[] = { |
| 474 kChromeUICrashURL, | 469 kChromeUICrashURL, |
| 475 kChromeUIKillURL, | 470 kChromeUIKillURL, |
| 476 kChromeUIHangURL, | 471 kChromeUIHangURL, |
| 477 kChromeUIShorthangURL, | 472 kChromeUIShorthangURL, |
| 478 kChromeUIGpuCleanURL, | 473 kChromeUIGpuCleanURL, |
| 479 kChromeUIGpuCrashURL, | 474 kChromeUIGpuCrashURL, |
| 480 kChromeUIGpuHangURL, | 475 kChromeUIGpuHangURL, |
| 481 }; | 476 }; |
| 482 const int kNumberOfChromeDebugURLs = | 477 const int kNumberOfChromeDebugURLs = |
| 483 static_cast<int>(arraysize(kChromeDebugURLs)); | 478 static_cast<int>(arraysize(kChromeDebugURLs)); |
| 484 | 479 |
| 485 const char kExtensionScheme[] = "chrome-extension"; | 480 const char kExtensionScheme[] = "chrome-extension"; |
| 486 const char kExtensionResourceScheme[] = "chrome-extension-resource"; | 481 const char kExtensionResourceScheme[] = "chrome-extension-resource"; |
| 487 | 482 |
| 488 } // namespace chrome | 483 } // namespace chrome |
| OLD | NEW |