| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // Contains constants for known URLs and portions thereof. | 5 // Contains constants for known URLs and portions thereof. |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_ | 7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_ |
| 8 #define CHROME_COMMON_URL_CONSTANTS_H_ | 8 #define CHROME_COMMON_URL_CONSTANTS_H_ |
| 9 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 extern const char kContentSettingsSubPage[]; | 207 extern const char kContentSettingsSubPage[]; |
| 208 extern const char kContentSettingsExceptionsSubPage[]; | 208 extern const char kContentSettingsExceptionsSubPage[]; |
| 209 extern const char kImportDataSubPage[]; | 209 extern const char kImportDataSubPage[]; |
| 210 extern const char kInstantConfirmPage[]; | 210 extern const char kInstantConfirmPage[]; |
| 211 extern const char kLanguageOptionsSubPage[]; | 211 extern const char kLanguageOptionsSubPage[]; |
| 212 extern const char kPersonalOptionsSubPage[]; | 212 extern const char kPersonalOptionsSubPage[]; |
| 213 extern const char kPasswordManagerSubPage[]; | 213 extern const char kPasswordManagerSubPage[]; |
| 214 extern const char kSearchEnginesSubPage[]; | 214 extern const char kSearchEnginesSubPage[]; |
| 215 extern const char kSyncSetupSubPage[]; | 215 extern const char kSyncSetupSubPage[]; |
| 216 #if defined(OS_CHROMEOS) | 216 #if defined(OS_CHROMEOS) |
| 217 extern const char kAboutOptionsSubPage[]; |
| 217 extern const char kInternetOptionsSubPage[]; | 218 extern const char kInternetOptionsSubPage[]; |
| 218 extern const char kSystemOptionsSubPage[]; | 219 extern const char kSystemOptionsSubPage[]; |
| 219 #endif | 220 #endif |
| 220 | 221 |
| 221 extern const char kSyncGoogleDashboardURL[]; | 222 extern const char kSyncGoogleDashboardURL[]; |
| 222 | 223 |
| 223 extern const char kPasswordManagerLearnMoreURL[]; | 224 extern const char kPasswordManagerLearnMoreURL[]; |
| 224 | 225 |
| 225 // General help link for Chrome. | 226 // General help link for Chrome. |
| 226 extern const char kChromeHelpURL[]; | 227 extern const char kChromeHelpURL[]; |
| (...skipping 23 matching lines...) Expand all Loading... |
| 250 // The URL for the "Learn more" page for the blocked plugin infobar. | 251 // The URL for the "Learn more" page for the blocked plugin infobar. |
| 251 extern const char kBlockedPluginLearnMoreURL[]; | 252 extern const char kBlockedPluginLearnMoreURL[]; |
| 252 | 253 |
| 253 // Call near the beginning of startup to register Chrome's internal URLs that | 254 // Call near the beginning of startup to register Chrome's internal URLs that |
| 254 // should be parsed as "standard" with the googleurl library. | 255 // should be parsed as "standard" with the googleurl library. |
| 255 void RegisterChromeSchemes(); | 256 void RegisterChromeSchemes(); |
| 256 | 257 |
| 257 } // namespace chrome | 258 } // namespace chrome |
| 258 | 259 |
| 259 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 260 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |