| 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/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "content/public/common/url_constants.h" | 10 #include "content/public/common/url_constants.h" |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 // listed by the built-in AutocompleteProvider. | 313 // listed by the built-in AutocompleteProvider. |
| 314 const char kAutofillSubPage[] = "autofill"; | 314 const char kAutofillSubPage[] = "autofill"; |
| 315 const char kClearBrowserDataSubPage[] = "clearBrowserData"; | 315 const char kClearBrowserDataSubPage[] = "clearBrowserData"; |
| 316 const char kContentSettingsExceptionsSubPage[] = "contentExceptions"; | 316 const char kContentSettingsExceptionsSubPage[] = "contentExceptions"; |
| 317 const char kContentSettingsSubPage[] = "content"; | 317 const char kContentSettingsSubPage[] = "content"; |
| 318 const char kCreateProfileSubPage[] = "createProfile"; | 318 const char kCreateProfileSubPage[] = "createProfile"; |
| 319 const char kExtensionsSubPage[] = "extensions"; | 319 const char kExtensionsSubPage[] = "extensions"; |
| 320 const char kHandlerSettingsSubPage[] = "handlers"; | 320 const char kHandlerSettingsSubPage[] = "handlers"; |
| 321 const char kImportDataSubPage[] = "importData"; | 321 const char kImportDataSubPage[] = "importData"; |
| 322 const char kLanguageOptionsSubPage[] = "languages"; | 322 const char kLanguageOptionsSubPage[] = "languages"; |
| 323 const char kManagedUserSettingsSubPage[] = "managedUser"; | 323 const char kSupervisedUserSettingsSubPage[] = "managedUser"; |
| 324 const char kManageProfileSubPage[] = "manageProfile"; | 324 const char kManageProfileSubPage[] = "manageProfile"; |
| 325 const char kPasswordManagerSubPage[] = "passwords"; | 325 const char kPasswordManagerSubPage[] = "passwords"; |
| 326 const char kResetProfileSettingsSubPage[] = "resetProfileSettings"; | 326 const char kResetProfileSettingsSubPage[] = "resetProfileSettings"; |
| 327 const char kSearchEnginesSubPage[] = "searchEngines"; | 327 const char kSearchEnginesSubPage[] = "searchEngines"; |
| 328 const char kSearchSubPage[] = "search"; | 328 const char kSearchSubPage[] = "search"; |
| 329 const char kSearchUsersSubPage[] = "search#Users"; | 329 const char kSearchUsersSubPage[] = "search#Users"; |
| 330 const char kSyncSetupSubPage[] = "syncSetup"; | 330 const char kSyncSetupSubPage[] = "syncSetup"; |
| 331 #if defined(OS_CHROMEOS) | 331 #if defined(OS_CHROMEOS) |
| 332 const char kInternetOptionsSubPage[] = "internet"; | 332 const char kInternetOptionsSubPage[] = "internet"; |
| 333 const char kBluetoothAddDeviceSubPage[] = "bluetooth"; | 333 const char kBluetoothAddDeviceSubPage[] = "bluetooth"; |
| (...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 704 ""; | 704 ""; |
| 705 #endif | 705 #endif |
| 706 #endif | 706 #endif |
| 707 | 707 |
| 708 // TODO(tengs): Replace with real URL when ready. | 708 // TODO(tengs): Replace with real URL when ready. |
| 709 const char kEasyUnlockLearnMoreUrl[] = | 709 const char kEasyUnlockLearnMoreUrl[] = |
| 710 "https://support.google.com/chromebook/?p=easy_unlock"; | 710 "https://support.google.com/chromebook/?p=easy_unlock"; |
| 711 const char kEasyUnlockManagementUrl[] = "https://chrome.com"; | 711 const char kEasyUnlockManagementUrl[] = "https://chrome.com"; |
| 712 | 712 |
| 713 } // namespace chrome | 713 } // namespace chrome |
| OLD | NEW |