| 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 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 const char kChromeUITabModalConfirmDialogHost[] = "tab-modal-confirm-dialog"; | 315 const char kChromeUITabModalConfirmDialogHost[] = "tab-modal-confirm-dialog"; |
| 316 #endif | 316 #endif |
| 317 | 317 |
| 318 #if defined(ENABLE_WEBRTC) | 318 #if defined(ENABLE_WEBRTC) |
| 319 const char kChromeUIWebRtcLogsHost[] = "webrtc-logs"; | 319 const char kChromeUIWebRtcLogsHost[] = "webrtc-logs"; |
| 320 #endif | 320 #endif |
| 321 | 321 |
| 322 // Option sub pages. | 322 // Option sub pages. |
| 323 // Add sub page paths to kChromeSettingsSubPages in builtin_provider.cc to be | 323 // Add sub page paths to kChromeSettingsSubPages in builtin_provider.cc to be |
| 324 // listed by the built-in AutocompleteProvider. | 324 // listed by the built-in AutocompleteProvider. |
| 325 const char kAutofillEditAddressSubPage[] = "autofillEditAddress"; |
| 325 const char kAutofillSubPage[] = "autofill"; | 326 const char kAutofillSubPage[] = "autofill"; |
| 326 const char kClearBrowserDataSubPage[] = "clearBrowserData"; | 327 const char kClearBrowserDataSubPage[] = "clearBrowserData"; |
| 327 const char kContentSettingsExceptionsSubPage[] = "contentExceptions"; | 328 const char kContentSettingsExceptionsSubPage[] = "contentExceptions"; |
| 328 const char kContentSettingsSubPage[] = "content"; | 329 const char kContentSettingsSubPage[] = "content"; |
| 329 const char kCreateProfileSubPage[] = "createProfile"; | 330 const char kCreateProfileSubPage[] = "createProfile"; |
| 330 const char kExtensionsSubPage[] = "extensions"; | 331 const char kExtensionsSubPage[] = "extensions"; |
| 331 const char kHandlerSettingsSubPage[] = "handlers"; | 332 const char kHandlerSettingsSubPage[] = "handlers"; |
| 332 const char kImportDataSubPage[] = "importData"; | 333 const char kImportDataSubPage[] = "importData"; |
| 333 const char kLanguageOptionsSubPage[] = "languages"; | 334 const char kLanguageOptionsSubPage[] = "languages"; |
| 334 const char kManageProfileSubPage[] = "manageProfile"; | 335 const char kManageProfileSubPage[] = "manageProfile"; |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 716 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; | 717 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; |
| 717 #else | 718 #else |
| 718 ""; | 719 ""; |
| 719 #endif | 720 #endif |
| 720 #endif | 721 #endif |
| 721 | 722 |
| 722 const char kEasyUnlockLearnMoreUrl[] = | 723 const char kEasyUnlockLearnMoreUrl[] = |
| 723 "https://support.google.com/chromebook/?p=easy_unlock"; | 724 "https://support.google.com/chromebook/?p=easy_unlock"; |
| 724 | 725 |
| 725 } // namespace chrome | 726 } // namespace chrome |
| OLD | NEW |