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 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
395 #if defined(OS_CHROMEOS) | 395 #if defined(OS_CHROMEOS) |
396 "https://support.google.com/chromeos/?p=settings_encryption"; | 396 "https://support.google.com/chromeos/?p=settings_encryption"; |
397 #else | 397 #else |
398 "https://support.google.com/chrome/?p=settings_encryption"; | 398 "https://support.google.com/chrome/?p=settings_encryption"; |
399 #endif | 399 #endif |
400 | 400 |
401 const char kSyncErrorsHelpURL[] = | 401 const char kSyncErrorsHelpURL[] = |
402 "https://support.google.com/chrome/?p=settings_sync_error"; | 402 "https://support.google.com/chrome/?p=settings_sync_error"; |
403 | 403 |
404 const char kSyncCreateNewAccountURL[] = | 404 const char kSyncCreateNewAccountURL[] = |
405 "https://www.google.com/accounts/NewAccount?service=chromiumsync"; | 405 "https://accounts.google.com/NewAccount?service=chromiumsync"; |
406 | 406 |
407 #if defined(OS_CHROMEOS) | 407 #if defined(OS_CHROMEOS) |
408 const char kNaturalScrollHelpURL[] = | 408 const char kNaturalScrollHelpURL[] = |
409 "https://support.google.com/chromeos/?p=simple_scrolling"; | 409 "https://support.google.com/chromeos/?p=simple_scrolling"; |
410 #endif | 410 #endif |
411 | 411 |
412 | 412 |
413 const char* const kChromeDebugURLs[] = { | 413 const char* const kChromeDebugURLs[] = { |
414 kChromeUICrashURL, | 414 kChromeUICrashURL, |
415 kChromeUIKillURL, | 415 kChromeUIKillURL, |
416 kChromeUIHangURL, | 416 kChromeUIHangURL, |
417 kChromeUIShorthangURL, | 417 kChromeUIShorthangURL, |
418 kChromeUIGpuCleanURL, | 418 kChromeUIGpuCleanURL, |
419 kChromeUIGpuCrashURL, | 419 kChromeUIGpuCrashURL, |
420 kChromeUIGpuHangURL, | 420 kChromeUIGpuHangURL, |
421 }; | 421 }; |
422 int kNumberOfChromeDebugURLs = static_cast<int>(arraysize(kChromeDebugURLs)); | 422 int kNumberOfChromeDebugURLs = static_cast<int>(arraysize(kChromeDebugURLs)); |
423 | 423 |
424 const char kExtensionScheme[] = "chrome-extension"; | 424 const char kExtensionScheme[] = "chrome-extension"; |
425 | 425 |
426 } // namespace chrome | 426 } // namespace chrome |
OLD | NEW |