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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 | 183 |
184 // Options sub-pages. | 184 // Options sub-pages. |
185 extern const char kAdvancedOptionsSubPage[]; | 185 extern const char kAdvancedOptionsSubPage[]; |
186 extern const char kAutoFillSubPage[]; | 186 extern const char kAutoFillSubPage[]; |
187 extern const char kBrowserOptionsSubPage[]; | 187 extern const char kBrowserOptionsSubPage[]; |
188 extern const char kClearBrowserDataSubPage[]; | 188 extern const char kClearBrowserDataSubPage[]; |
189 extern const char kContentSettingsSubPage[]; | 189 extern const char kContentSettingsSubPage[]; |
190 extern const char kContentSettingsExceptionsSubPage[]; | 190 extern const char kContentSettingsExceptionsSubPage[]; |
191 extern const char kImportDataSubPage[]; | 191 extern const char kImportDataSubPage[]; |
192 extern const char kInstantConfirmPage[]; | 192 extern const char kInstantConfirmPage[]; |
| 193 extern const char kLanguageOptionsSubPage[]; |
193 extern const char kPersonalOptionsSubPage[]; | 194 extern const char kPersonalOptionsSubPage[]; |
194 extern const char kPasswordManagerSubPage[]; | 195 extern const char kPasswordManagerSubPage[]; |
195 extern const char kSearchEnginesSubPage[]; | 196 extern const char kSearchEnginesSubPage[]; |
196 #if defined(OS_CHROMEOS) | 197 #if defined(OS_CHROMEOS) |
197 extern const char kInternetOptionsSubPage[]; | 198 extern const char kInternetOptionsSubPage[]; |
198 extern const char kLanguageOptionsSubPage[]; | |
199 extern const char kSystemOptionsSubPage[]; | 199 extern const char kSystemOptionsSubPage[]; |
200 #endif | 200 #endif |
201 | 201 |
202 // General help link for Chrome. | 202 // General help link for Chrome. |
203 extern const char kChromeHelpURL[]; | 203 extern const char kChromeHelpURL[]; |
204 | 204 |
205 // "What do these mean?" URL for the Page Info bubble. | 205 // "What do these mean?" URL for the Page Info bubble. |
206 extern const char kPageInfoHelpCenterURL[]; | 206 extern const char kPageInfoHelpCenterURL[]; |
207 | 207 |
208 // "Learn more" URL for "Aw snap" page. | 208 // "Learn more" URL for "Aw snap" page. |
(...skipping 15 matching lines...) Expand all Loading... |
224 // The URL for the "Learn more" page for the blocked/outdated plugin infobar. | 224 // The URL for the "Learn more" page for the blocked/outdated plugin infobar. |
225 extern const char kOutdatedPluginLearnMoreURL[]; | 225 extern const char kOutdatedPluginLearnMoreURL[]; |
226 | 226 |
227 // Call near the beginning of startup to register Chrome's internal URLs that | 227 // Call near the beginning of startup to register Chrome's internal URLs that |
228 // should be parsed as "standard" with the googleurl library. | 228 // should be parsed as "standard" with the googleurl library. |
229 void RegisterChromeSchemes(); | 229 void RegisterChromeSchemes(); |
230 | 230 |
231 } // namespace chrome | 231 } // namespace chrome |
232 | 232 |
233 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 233 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |