| 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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 const char kHandlerSettingsSubPage[] = "handlers"; | 344 const char kHandlerSettingsSubPage[] = "handlers"; |
| 345 const char kImportDataSubPage[] = "importData"; | 345 const char kImportDataSubPage[] = "importData"; |
| 346 const char kLanguageOptionsSubPage[] = "languages"; | 346 const char kLanguageOptionsSubPage[] = "languages"; |
| 347 const char kManageProfileSubPage[] = "manageProfile"; | 347 const char kManageProfileSubPage[] = "manageProfile"; |
| 348 const char kPasswordManagerSubPage[] = "passwords"; | 348 const char kPasswordManagerSubPage[] = "passwords"; |
| 349 const char kPowerOptionsSubPage[] = "power-overlay"; | 349 const char kPowerOptionsSubPage[] = "power-overlay"; |
| 350 const char kResetProfileSettingsSubPage[] = "resetProfileSettings"; | 350 const char kResetProfileSettingsSubPage[] = "resetProfileSettings"; |
| 351 const char kSearchEnginesSubPage[] = "searchEngines"; | 351 const char kSearchEnginesSubPage[] = "searchEngines"; |
| 352 const char kSearchSubPage[] = "search"; | 352 const char kSearchSubPage[] = "search"; |
| 353 const char kSearchUsersSubPage[] = "search#Users"; | 353 const char kSearchUsersSubPage[] = "search#Users"; |
| 354 const char kSignOutSubPage[] = "signOut"; |
| 354 const char kSyncSetupSubPage[] = "syncSetup"; | 355 const char kSyncSetupSubPage[] = "syncSetup"; |
| 355 const char kTriggeredResetProfileSettingsSubPage[] = | 356 const char kTriggeredResetProfileSettingsSubPage[] = |
| 356 "triggeredResetProfileSettings"; | 357 "triggeredResetProfileSettings"; |
| 357 #if defined(OS_CHROMEOS) | 358 #if defined(OS_CHROMEOS) |
| 358 const char kInternetOptionsSubPage[] = "internet"; | 359 const char kInternetOptionsSubPage[] = "internet"; |
| 359 const char kChangeProfilePictureSubPage[] = "changePicture"; | 360 const char kChangeProfilePictureSubPage[] = "changePicture"; |
| 360 #endif | 361 #endif |
| 361 | 362 |
| 362 // Extension sub pages. | 363 // Extension sub pages. |
| 363 const char kExtensionConfigureCommandsSubPage[] = "configureCommands"; | 364 const char kExtensionConfigureCommandsSubPage[] = "configureCommands"; |
| (...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 770 "https://support.google.com/chrome?p=bluetooth"; | 771 "https://support.google.com/chrome?p=bluetooth"; |
| 771 | 772 |
| 772 const char kChooserUsbOverviewURL[] = | 773 const char kChooserUsbOverviewURL[] = |
| 773 "https://support.google.com/chrome?p=webusb"; | 774 "https://support.google.com/chrome?p=webusb"; |
| 774 | 775 |
| 775 #if defined(OS_CHROMEOS) | 776 #if defined(OS_CHROMEOS) |
| 776 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; | 777 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; |
| 777 #endif | 778 #endif |
| 778 | 779 |
| 779 } // namespace chrome | 780 } // namespace chrome |
| OLD | NEW |