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 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
296 const char kSyncSetupSubPage[] = "syncSetup"; | 296 const char kSyncSetupSubPage[] = "syncSetup"; |
297 const char kSyncSetupForceLoginSubPage[] = "syncSetup#forceLogin"; | 297 const char kSyncSetupForceLoginSubPage[] = "syncSetup#forceLogin"; |
298 #if defined(OS_CHROMEOS) | 298 #if defined(OS_CHROMEOS) |
299 const char kInternetOptionsSubPage[] = "internet"; | 299 const char kInternetOptionsSubPage[] = "internet"; |
300 const char kBluetoothAddDeviceSubPage[] = "bluetooth"; | 300 const char kBluetoothAddDeviceSubPage[] = "bluetooth"; |
301 #endif | 301 #endif |
302 | 302 |
303 // Extension sub pages. | 303 // Extension sub pages. |
304 const char kExtensionConfigureCommandsSubPage[] = "configureCommands"; | 304 const char kExtensionConfigureCommandsSubPage[] = "configureCommands"; |
305 | 305 |
| 306 const char kExtensionInvalidRequestURL[] = "chrome-extension://invalid/"; |
| 307 const char kExtensionResourceInvalidRequestURL[] = |
| 308 "chrome-extension-resource://invalid/"; |
| 309 |
306 const char kSyncGoogleDashboardURL[] = | 310 const char kSyncGoogleDashboardURL[] = |
307 "https://www.google.com/settings/chrome/sync/"; | 311 "https://www.google.com/settings/chrome/sync/"; |
308 | 312 |
309 const char kAutoPasswordGenerationLearnMoreURL[] = | 313 const char kAutoPasswordGenerationLearnMoreURL[] = |
310 "https://support.google.com/chrome/?p=ui_generate_password"; | 314 "https://support.google.com/chrome/?p=ui_generate_password"; |
311 | 315 |
312 | 316 |
313 const char kPasswordManagerLearnMoreURL[] = | 317 const char kPasswordManagerLearnMoreURL[] = |
314 #if defined(OS_CHROMEOS) | 318 #if defined(OS_CHROMEOS) |
315 "https://support.google.com/chromeos/?p=settings_password"; | 319 "https://support.google.com/chromeos/?p=settings_password"; |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
499 kChromeUIGpuCrashURL, | 503 kChromeUIGpuCrashURL, |
500 kChromeUIGpuHangURL, | 504 kChromeUIGpuHangURL, |
501 }; | 505 }; |
502 const int kNumberOfChromeDebugURLs = | 506 const int kNumberOfChromeDebugURLs = |
503 static_cast<int>(arraysize(kChromeDebugURLs)); | 507 static_cast<int>(arraysize(kChromeDebugURLs)); |
504 | 508 |
505 const char kExtensionScheme[] = "chrome-extension"; | 509 const char kExtensionScheme[] = "chrome-extension"; |
506 const char kExtensionResourceScheme[] = "chrome-extension-resource"; | 510 const char kExtensionResourceScheme[] = "chrome-extension-resource"; |
507 | 511 |
508 } // namespace chrome | 512 } // namespace chrome |
OLD | NEW |