Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(204)

Side by Side Diff: chrome/common/url_constants.cc

Issue 9814030: get rid of old options pages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more fixes Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 "googleurl/src/url_util.h" 7 #include "googleurl/src/url_util.h"
8 8
9 namespace { 9 namespace {
10 const char* kSavableSchemes[] = { 10 const char* kSavableSchemes[] = {
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 const char kInstantConfirmPage[] = "instantConfirm"; 257 const char kInstantConfirmPage[] = "instantConfirm";
258 const char kLanguageOptionsSubPage[] = "languages"; 258 const char kLanguageOptionsSubPage[] = "languages";
259 const char kManageProfileSubPage[] = "manageProfile"; 259 const char kManageProfileSubPage[] = "manageProfile";
260 const char kPasswordManagerSubPage[] = "passwords"; 260 const char kPasswordManagerSubPage[] = "passwords";
261 const char kPersonalOptionsSubPage[] = "personal"; 261 const char kPersonalOptionsSubPage[] = "personal";
262 const char kSearchEnginesSubPage[] = "searchEngines"; 262 const char kSearchEnginesSubPage[] = "searchEngines";
263 const char kSyncSetupSubPage[] = "syncSetup"; 263 const char kSyncSetupSubPage[] = "syncSetup";
264 const char kSyncSetupForceLoginSubPage[] = "syncSetup#forceLogin"; 264 const char kSyncSetupForceLoginSubPage[] = "syncSetup#forceLogin";
265 #if defined(OS_CHROMEOS) 265 #if defined(OS_CHROMEOS)
266 const char kInternetOptionsSubPage[] = "internet"; 266 const char kInternetOptionsSubPage[] = "internet";
267 const char kSystemOptionsSubPage[] = "system";
268 const char kBluetoothAddDeviceSubPage[] = "bluetooth"; 267 const char kBluetoothAddDeviceSubPage[] = "bluetooth";
269 #endif 268 #endif
270 269
271 const char kSyncGoogleDashboardURL[] = "https://www.google.com/dashboard/"; 270 const char kSyncGoogleDashboardURL[] = "https://www.google.com/dashboard/";
272 271
273 const char kPasswordManagerLearnMoreURL[] = 272 const char kPasswordManagerLearnMoreURL[] =
274 #if defined(OS_CHROMEOS) 273 #if defined(OS_CHROMEOS)
275 "https://support.google.com/chromeos/?p=settings_password"; 274 "https://support.google.com/chromeos/?p=settings_password";
276 #else 275 #else
277 "https://support.google.com/chrome/?p=settings_password"; 276 "https://support.google.com/chrome/?p=settings_password";
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 url_util::AddStandardScheme(kExtensionScheme); 419 url_util::AddStandardScheme(kExtensionScheme);
421 #if defined(OS_CHROMEOS) 420 #if defined(OS_CHROMEOS)
422 url_util::AddStandardScheme(kCrosScheme); 421 url_util::AddStandardScheme(kCrosScheme);
423 #endif 422 #endif
424 423
425 // This call will also lock the list of standard schemes. 424 // This call will also lock the list of standard schemes.
426 content::RegisterContentSchemes(kSavableSchemes); 425 content::RegisterContentSchemes(kSavableSchemes);
427 } 426 }
428 427
429 } // namespace chrome 428 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698