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 { | 9 namespace { |
10 const char* kSavableSchemes[] = { | 10 const char* kSavableSchemes[] = { |
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 const char kLanguageOptionsSubPage[] = "languages"; | 258 const char kLanguageOptionsSubPage[] = "languages"; |
259 const char kManageProfileSubPage[] = "manageProfile"; | 259 const char kManageProfileSubPage[] = "manageProfile"; |
260 const char kPasswordManagerSubPage[] = "passwords"; | 260 const char kPasswordManagerSubPage[] = "passwords"; |
261 const char kPersonalOptionsSubPage[] = "personal"; | 261 const char kPersonalOptionsSubPage[] = "personal"; |
262 const char kSearchEnginesSubPage[] = "searchEngines"; | 262 const char kSearchEnginesSubPage[] = "searchEngines"; |
263 const char kSyncSetupSubPage[] = "syncSetup"; | 263 const char kSyncSetupSubPage[] = "syncSetup"; |
264 const char kSyncSetupForceLoginSubPage[] = "syncSetup#forceLogin"; | 264 const char kSyncSetupForceLoginSubPage[] = "syncSetup#forceLogin"; |
265 #if defined(OS_CHROMEOS) | 265 #if defined(OS_CHROMEOS) |
266 const char kInternetOptionsSubPage[] = "internet"; | 266 const char kInternetOptionsSubPage[] = "internet"; |
267 const char kSystemOptionsSubPage[] = "system"; | 267 const char kSystemOptionsSubPage[] = "system"; |
| 268 const char kBluetoothAddDeviceSubPage[] = "bluetooth"; |
268 #endif | 269 #endif |
269 | 270 |
270 const char kSyncGoogleDashboardURL[] = "https://www.google.com/dashboard/"; | 271 const char kSyncGoogleDashboardURL[] = "https://www.google.com/dashboard/"; |
271 | 272 |
272 const char kPasswordManagerLearnMoreURL[] = | 273 const char kPasswordManagerLearnMoreURL[] = |
273 #if defined(OS_CHROMEOS) | 274 #if defined(OS_CHROMEOS) |
274 "https://support.google.com/chromeos/?p=settings_password"; | 275 "https://support.google.com/chromeos/?p=settings_password"; |
275 #else | 276 #else |
276 "https://support.google.com/chrome/?p=settings_password"; | 277 "https://support.google.com/chrome/?p=settings_password"; |
277 #endif | 278 #endif |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
419 url_util::AddStandardScheme(kExtensionScheme); | 420 url_util::AddStandardScheme(kExtensionScheme); |
420 #if defined(OS_CHROMEOS) | 421 #if defined(OS_CHROMEOS) |
421 url_util::AddStandardScheme(kCrosScheme); | 422 url_util::AddStandardScheme(kCrosScheme); |
422 #endif | 423 #endif |
423 | 424 |
424 // This call will also lock the list of standard schemes. | 425 // This call will also lock the list of standard schemes. |
425 content::RegisterContentSchemes(kSavableSchemes); | 426 content::RegisterContentSchemes(kSavableSchemes); |
426 } | 427 } |
427 | 428 |
428 } // namespace chrome | 429 } // namespace chrome |
OLD | NEW |