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

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

Issue 5991003: Added group policy for disabling all client-side 3D APIs in Chromium... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 1137 matching lines...) Expand 10 before | Expand all | Expand 10 after
1148 "profile.managed_default_content_settings.javascript"; 1148 "profile.managed_default_content_settings.javascript";
1149 const char kManagedDefaultPluginsSetting[] = 1149 const char kManagedDefaultPluginsSetting[] =
1150 "profile.managed_default_content_settings.plugins"; 1150 "profile.managed_default_content_settings.plugins";
1151 const char kManagedDefaultPopupsSetting[] = 1151 const char kManagedDefaultPopupsSetting[] =
1152 "profile.managed_default_content_settings.popups"; 1152 "profile.managed_default_content_settings.popups";
1153 1153
1154 // Dictionary for storing the set of known background pages (keys are extension 1154 // Dictionary for storing the set of known background pages (keys are extension
1155 // IDs of background page owners, value is a boolean that is true if the user 1155 // IDs of background page owners, value is a boolean that is true if the user
1156 // needs to acknowledge this page. 1156 // needs to acknowledge this page.
1157 const char kKnownBackgroundPages[] = "background_pages.known"; 1157 const char kKnownBackgroundPages[] = "background_pages.known";
1158
1159 // Preference to disable 3D APIs (WebGL, Pepper 3D).
1160 const char kDisable3DAPIs[] = "disable_3d_apis";
Mattias Nissler (ping if slow) 2010/12/20 12:25:36 This file has several sections, please move up int
Ken Russell (switch to Gerrit) 2010/12/20 20:34:33 Done.
1158 } // namespace prefs 1161 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698