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 #include "chrome/common/url_constants.h" | 5 #include "chrome/common/url_constants.h" |
6 | 6 |
7 #include "googleurl/src/url_util.h" | 7 #include "googleurl/src/url_util.h" |
8 | 8 |
9 namespace chrome { | 9 namespace chrome { |
10 | 10 |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 const char kAutofillSubPage[] = "autofill"; | 226 const char kAutofillSubPage[] = "autofill"; |
227 const char kBrowserOptionsSubPage[] = "browser"; | 227 const char kBrowserOptionsSubPage[] = "browser"; |
228 const char kClearBrowserDataSubPage[] = "clearBrowserData"; | 228 const char kClearBrowserDataSubPage[] = "clearBrowserData"; |
229 const char kContentSettingsSubPage[] = "content"; | 229 const char kContentSettingsSubPage[] = "content"; |
230 const char kContentSettingsExceptionsSubPage[] = "contentExceptions"; | 230 const char kContentSettingsExceptionsSubPage[] = "contentExceptions"; |
231 const char kHandlerSettingsSubPage[] = "handlers"; | 231 const char kHandlerSettingsSubPage[] = "handlers"; |
232 const char kExtensionsSubPage[] = "extensions"; | 232 const char kExtensionsSubPage[] = "extensions"; |
233 const char kImportDataSubPage[] = "importData"; | 233 const char kImportDataSubPage[] = "importData"; |
234 const char kInstantConfirmPage[] = "instantConfirm"; | 234 const char kInstantConfirmPage[] = "instantConfirm"; |
235 const char kLanguageOptionsSubPage[] = "languages"; | 235 const char kLanguageOptionsSubPage[] = "languages"; |
| 236 const char kManageProfileSubPage[] = "manageProfile"; |
236 const char kPersonalOptionsSubPage[] = "personal"; | 237 const char kPersonalOptionsSubPage[] = "personal"; |
237 const char kPasswordManagerSubPage[] = "passwords"; | 238 const char kPasswordManagerSubPage[] = "passwords"; |
238 const char kSearchEnginesSubPage[] = "searchEngines"; | 239 const char kSearchEnginesSubPage[] = "searchEngines"; |
239 const char kSyncSetupSubPage[] = "syncSetup"; | 240 const char kSyncSetupSubPage[] = "syncSetup"; |
240 #if defined(OS_CHROMEOS) | 241 #if defined(OS_CHROMEOS) |
241 const char kAboutOptionsSubPage[] = "about"; | 242 const char kAboutOptionsSubPage[] = "about"; |
242 const char kInternetOptionsSubPage[] = "internet"; | 243 const char kInternetOptionsSubPage[] = "internet"; |
243 const char kSystemOptionsSubPage[] = "system"; | 244 const char kSystemOptionsSubPage[] = "system"; |
244 #endif | 245 #endif |
245 | 246 |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 | 330 |
330 // Prevent future modification of the standard schemes list. This is to | 331 // Prevent future modification of the standard schemes list. This is to |
331 // prevent accidental creation of data races in the program. AddStandardScheme | 332 // prevent accidental creation of data races in the program. AddStandardScheme |
332 // isn't threadsafe so must be called when GURL isn't used on any other | 333 // isn't threadsafe so must be called when GURL isn't used on any other |
333 // thread. This is really easy to mess up, so we say that all calls to | 334 // thread. This is really easy to mess up, so we say that all calls to |
334 // AddStandardScheme in Chrome must be inside this function. | 335 // AddStandardScheme in Chrome must be inside this function. |
335 url_util::LockStandardSchemes(); | 336 url_util::LockStandardSchemes(); |
336 } | 337 } |
337 | 338 |
338 } // namespace chrome | 339 } // namespace chrome |
OLD | NEW |