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

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: 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 1224 matching lines...) Expand 10 before | Expand all | Expand 10 after
1235 "profile.managed_default_content_settings.javascript"; 1235 "profile.managed_default_content_settings.javascript";
1236 const char kManagedDefaultPluginsSetting[] = 1236 const char kManagedDefaultPluginsSetting[] =
1237 "profile.managed_default_content_settings.plugins"; 1237 "profile.managed_default_content_settings.plugins";
1238 const char kManagedDefaultPopupsSetting[] = 1238 const char kManagedDefaultPopupsSetting[] =
1239 "profile.managed_default_content_settings.popups"; 1239 "profile.managed_default_content_settings.popups";
1240 1240
1241 // Dictionary for storing the set of known background pages (keys are extension 1241 // Dictionary for storing the set of known background pages (keys are extension
1242 // IDs of background page owners, value is a boolean that is true if the user 1242 // IDs of background page owners, value is a boolean that is true if the user
1243 // needs to acknowledge this page. 1243 // needs to acknowledge this page.
1244 const char kKnownBackgroundPages[] = "background_pages.known"; 1244 const char kKnownBackgroundPages[] = "background_pages.known";
1245
1246 // Dictionary that maps URL schemes (protocols) to URL handlers.
1247 const char kRegisteredProtocolHandlers[] = "registered_protocol_handlers";
1245 } // namespace prefs 1248 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698