| 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 <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_CHROMEOS) | 340 #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_CHROMEOS) |
| 341 const char kChromeUICastHost[] = "cast"; | 341 const char kChromeUICastHost[] = "cast"; |
| 342 #endif | 342 #endif |
| 343 #endif | 343 #endif |
| 344 | 344 |
| 345 // Option sub pages. | 345 // Option sub pages. |
| 346 // Add sub page paths to kChromeSettingsSubPages in builtin_provider.cc to be | 346 // Add sub page paths to kChromeSettingsSubPages in builtin_provider.cc to be |
| 347 // listed by the built-in AutocompleteProvider. | 347 // listed by the built-in AutocompleteProvider. |
| 348 const char kAutofillSubPage[] = "autofill"; | 348 const char kAutofillSubPage[] = "autofill"; |
| 349 const char kClearBrowserDataSubPage[] = "clearBrowserData"; | 349 const char kClearBrowserDataSubPage[] = "clearBrowserData"; |
| 350 const char kContentSettingsExceptionsSubPage[] = "contentExceptions"; | |
| 351 const char kContentSettingsSubPage[] = "content"; | 350 const char kContentSettingsSubPage[] = "content"; |
| 352 const char kCreateProfileSubPage[] = "createProfile"; | 351 const char kCreateProfileSubPage[] = "createProfile"; |
| 352 const char kDeprecatedOptionsContentSettingsExceptionsSubPage[] = |
| 353 "contentExceptions"; |
| 353 const char kExtensionsSubPage[] = "extensions"; | 354 const char kExtensionsSubPage[] = "extensions"; |
| 354 const char kHandlerSettingsSubPage[] = "handlers"; | 355 const char kHandlerSettingsSubPage[] = "handlers"; |
| 355 const char kImportDataSubPage[] = "importData"; | 356 const char kImportDataSubPage[] = "importData"; |
| 356 const char kLanguageOptionsSubPage[] = "languages"; | 357 const char kLanguageOptionsSubPage[] = "languages"; |
| 357 const char kManageProfileSubPage[] = "manageProfile"; | 358 const char kManageProfileSubPage[] = "manageProfile"; |
| 358 const char kPasswordManagerSubPage[] = "passwords"; | 359 const char kPasswordManagerSubPage[] = "passwords"; |
| 359 const char kResetProfileSettingsSubPage[] = "resetProfileSettings"; | 360 const char kResetProfileSettingsSubPage[] = "resetProfileSettings"; |
| 360 const char kSearchEnginesSubPage[] = "searchEngines"; | 361 const char kSearchEnginesSubPage[] = "searchEngines"; |
| 361 const char kSignOutSubPage[] = "signOut"; | 362 const char kSignOutSubPage[] = "signOut"; |
| 362 const char kSyncSetupSubPage[] = "syncSetup"; | 363 const char kSyncSetupSubPage[] = "syncSetup"; |
| (...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 796 #endif | 797 #endif |
| 797 | 798 |
| 798 const char kChooserUsbOverviewURL[] = | 799 const char kChooserUsbOverviewURL[] = |
| 799 "https://support.google.com/chrome?p=webusb"; | 800 "https://support.google.com/chrome?p=webusb"; |
| 800 | 801 |
| 801 #if defined(OS_CHROMEOS) | 802 #if defined(OS_CHROMEOS) |
| 802 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; | 803 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; |
| 803 #endif | 804 #endif |
| 804 | 805 |
| 805 } // namespace chrome | 806 } // namespace chrome |
| OLD | NEW |