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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 const char kContentSettingsSubPage[] = "content"; | 216 const char kContentSettingsSubPage[] = "content"; |
217 const char kContentSettingsExceptionsSubPage[] = "contentExceptions"; | 217 const char kContentSettingsExceptionsSubPage[] = "contentExceptions"; |
218 const char kImportDataSubPage[] = "importData"; | 218 const char kImportDataSubPage[] = "importData"; |
219 const char kInstantConfirmPage[] = "instantConfirm"; | 219 const char kInstantConfirmPage[] = "instantConfirm"; |
220 const char kLanguageOptionsSubPage[] = "languages"; | 220 const char kLanguageOptionsSubPage[] = "languages"; |
221 const char kPersonalOptionsSubPage[] = "personal"; | 221 const char kPersonalOptionsSubPage[] = "personal"; |
222 const char kPasswordManagerSubPage[] = "passwords"; | 222 const char kPasswordManagerSubPage[] = "passwords"; |
223 const char kSearchEnginesSubPage[] = "searchEngines"; | 223 const char kSearchEnginesSubPage[] = "searchEngines"; |
224 const char kSyncSetupSubPage[] = "syncSetup"; | 224 const char kSyncSetupSubPage[] = "syncSetup"; |
225 #if defined(OS_CHROMEOS) | 225 #if defined(OS_CHROMEOS) |
| 226 const char kAboutOptionsSubPage[] = "about"; |
226 const char kInternetOptionsSubPage[] = "internet"; | 227 const char kInternetOptionsSubPage[] = "internet"; |
227 const char kSystemOptionsSubPage[] = "system"; | 228 const char kSystemOptionsSubPage[] = "system"; |
228 #endif | 229 #endif |
229 | 230 |
230 const char kSyncGoogleDashboardURL[] = "https://www.google.com/dashboard/"; | 231 const char kSyncGoogleDashboardURL[] = "https://www.google.com/dashboard/"; |
231 | 232 |
232 const char kPasswordManagerLearnMoreURL[] = | 233 const char kPasswordManagerLearnMoreURL[] = |
233 #if defined(OS_CHROMEOS) | 234 #if defined(OS_CHROMEOS) |
234 "https://www.google.com/support/chromeos/bin/answer.py?answer=95606"; | 235 "https://www.google.com/support/chromeos/bin/answer.py?answer=95606"; |
235 #else | 236 #else |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 | 298 |
298 // Prevent future modification of the standard schemes list. This is to | 299 // Prevent future modification of the standard schemes list. This is to |
299 // prevent accidental creation of data races in the program. AddStandardScheme | 300 // prevent accidental creation of data races in the program. AddStandardScheme |
300 // isn't threadsafe so must be called when GURL isn't used on any other | 301 // isn't threadsafe so must be called when GURL isn't used on any other |
301 // thread. This is really easy to mess up, so we say that all calls to | 302 // thread. This is really easy to mess up, so we say that all calls to |
302 // AddStandardScheme in Chrome must be inside this function. | 303 // AddStandardScheme in Chrome must be inside this function. |
303 url_util::LockStandardSchemes(); | 304 url_util::LockStandardSchemes(); |
304 } | 305 } |
305 | 306 |
306 } // namespace chrome | 307 } // namespace chrome |
OLD | NEW |