| 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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 const char kSyncSetupSubPage[] = "syncSetup"; | 288 const char kSyncSetupSubPage[] = "syncSetup"; |
| 289 const char kSyncSetupForceLoginSubPage[] = "syncSetup#forceLogin"; | 289 const char kSyncSetupForceLoginSubPage[] = "syncSetup#forceLogin"; |
| 290 #if defined(OS_CHROMEOS) | 290 #if defined(OS_CHROMEOS) |
| 291 const char kInternetOptionsSubPage[] = "internet"; | 291 const char kInternetOptionsSubPage[] = "internet"; |
| 292 const char kBluetoothAddDeviceSubPage[] = "bluetooth"; | 292 const char kBluetoothAddDeviceSubPage[] = "bluetooth"; |
| 293 #endif | 293 #endif |
| 294 | 294 |
| 295 // Extension sub pages. | 295 // Extension sub pages. |
| 296 const char kExtensionConfigureCommandsSubPage[] = "configureCommands"; | 296 const char kExtensionConfigureCommandsSubPage[] = "configureCommands"; |
| 297 | 297 |
| 298 const char kExtensionInvalidRequestURL[] = "chrome-extension://invalid/"; |
| 299 const char kExtensionResourceInvalidRequestURL[] = |
| 300 "chrome-extension-resource://invalid/"; |
| 301 |
| 298 const char kSyncGoogleDashboardURL[] = | 302 const char kSyncGoogleDashboardURL[] = |
| 299 "https://www.google.com/settings/chrome/sync/"; | 303 "https://www.google.com/settings/chrome/sync/"; |
| 300 | 304 |
| 301 const char kAutoPasswordGenerationLearnMoreURL[] = | 305 const char kAutoPasswordGenerationLearnMoreURL[] = |
| 302 "https://support.google.com/chrome/?p=ui_generate_password"; | 306 "https://support.google.com/chrome/?p=ui_generate_password"; |
| 303 | 307 |
| 304 | 308 |
| 305 const char kPasswordManagerLearnMoreURL[] = | 309 const char kPasswordManagerLearnMoreURL[] = |
| 306 #if defined(OS_CHROMEOS) | 310 #if defined(OS_CHROMEOS) |
| 307 "https://support.google.com/chromeos/?p=settings_password"; | 311 "https://support.google.com/chromeos/?p=settings_password"; |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 kChromeUIGpuCrashURL, | 492 kChromeUIGpuCrashURL, |
| 489 kChromeUIGpuHangURL, | 493 kChromeUIGpuHangURL, |
| 490 }; | 494 }; |
| 491 const int kNumberOfChromeDebugURLs = | 495 const int kNumberOfChromeDebugURLs = |
| 492 static_cast<int>(arraysize(kChromeDebugURLs)); | 496 static_cast<int>(arraysize(kChromeDebugURLs)); |
| 493 | 497 |
| 494 const char kExtensionScheme[] = "chrome-extension"; | 498 const char kExtensionScheme[] = "chrome-extension"; |
| 495 const char kExtensionResourceScheme[] = "chrome-extension-resource"; | 499 const char kExtensionResourceScheme[] = "chrome-extension-resource"; |
| 496 | 500 |
| 497 } // namespace chrome | 501 } // namespace chrome |
| OLD | NEW |