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