| 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 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 const char kResetProfileSettingsSubPage[] = "resetProfileSettings"; | 357 const char kResetProfileSettingsSubPage[] = "resetProfileSettings"; |
| 358 const char kSearchEnginesSubPage[] = "searchEngines"; | 358 const char kSearchEnginesSubPage[] = "searchEngines"; |
| 359 const char kSearchSubPage[] = "search"; | 359 const char kSearchSubPage[] = "search"; |
| 360 const char kSearchUsersSubPage[] = "search#Users"; | 360 const char kSearchUsersSubPage[] = "search#Users"; |
| 361 const char kSignOutSubPage[] = "signOut"; | 361 const char kSignOutSubPage[] = "signOut"; |
| 362 const char kSyncSetupSubPage[] = "syncSetup"; | 362 const char kSyncSetupSubPage[] = "syncSetup"; |
| 363 const char kTriggeredResetProfileSettingsSubPage[] = | 363 const char kTriggeredResetProfileSettingsSubPage[] = |
| 364 "triggeredResetProfileSettings"; | 364 "triggeredResetProfileSettings"; |
| 365 #if defined(OS_CHROMEOS) | 365 #if defined(OS_CHROMEOS) |
| 366 const char kInternetOptionsSubPage[] = "internet"; | 366 const char kInternetOptionsSubPage[] = "internet"; |
| 367 const char kChangeProfilePictureSubPage[] = "changePicture"; | |
| 368 #endif | 367 #endif |
| 369 | 368 |
| 370 // Extension sub pages. | 369 // Extension sub pages. |
| 371 const char kExtensionConfigureCommandsSubPage[] = "configureCommands"; | 370 const char kExtensionConfigureCommandsSubPage[] = "configureCommands"; |
| 372 | 371 |
| 373 const char kExtensionInvalidRequestURL[] = "chrome-extension://invalid/"; | 372 const char kExtensionInvalidRequestURL[] = "chrome-extension://invalid/"; |
| 374 const char kExtensionResourceInvalidRequestURL[] = | 373 const char kExtensionResourceInvalidRequestURL[] = |
| 375 "chrome-extension-resource://invalid/"; | 374 "chrome-extension-resource://invalid/"; |
| 376 | 375 |
| 377 const char kSyncGoogleDashboardURL[] = | 376 const char kSyncGoogleDashboardURL[] = |
| (...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 782 "https://support.google.com/chrome?p=bluetooth"; | 781 "https://support.google.com/chrome?p=bluetooth"; |
| 783 | 782 |
| 784 const char kChooserUsbOverviewURL[] = | 783 const char kChooserUsbOverviewURL[] = |
| 785 "https://support.google.com/chrome?p=webusb"; | 784 "https://support.google.com/chrome?p=webusb"; |
| 786 | 785 |
| 787 #if defined(OS_CHROMEOS) | 786 #if defined(OS_CHROMEOS) |
| 788 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; | 787 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; |
| 789 #endif | 788 #endif |
| 790 | 789 |
| 791 } // namespace chrome | 790 } // namespace chrome |
| OLD | NEW |