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