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

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

Issue 6410115: Adds navigator.registerProtocolHandler. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Sync'd, disallow non-same origin rph, adds hostname to the infobar. Created 9 years, 10 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) 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/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 namespace prefs { 7 namespace prefs {
8 8
9 // *************** PROFILE PREFS *************** 9 // *************** PROFILE PREFS ***************
10 // These are attached to the user profile 10 // These are attached to the user profile
(...skipping 1225 matching lines...) Expand 10 before | Expand all | Expand 10 after
1236 "profile.managed_default_content_settings.javascript"; 1236 "profile.managed_default_content_settings.javascript";
1237 const char kManagedDefaultPluginsSetting[] = 1237 const char kManagedDefaultPluginsSetting[] =
1238 "profile.managed_default_content_settings.plugins"; 1238 "profile.managed_default_content_settings.plugins";
1239 const char kManagedDefaultPopupsSetting[] = 1239 const char kManagedDefaultPopupsSetting[] =
1240 "profile.managed_default_content_settings.popups"; 1240 "profile.managed_default_content_settings.popups";
1241 1241
1242 // Dictionary for storing the set of known background pages (keys are extension 1242 // Dictionary for storing the set of known background pages (keys are extension
1243 // IDs of background page owners, value is a boolean that is true if the user 1243 // IDs of background page owners, value is a boolean that is true if the user
1244 // needs to acknowledge this page. 1244 // needs to acknowledge this page.
1245 const char kKnownBackgroundPages[] = "background_pages.known"; 1245 const char kKnownBackgroundPages[] = "background_pages.known";
1246
1247 // Dictionary that maps URL schemes (protocols) to URL handlers.
1248 const char kRegisteredProtocolHandlers[] = "registered_protocol_handlers";
1246 } // namespace prefs 1249 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698