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

Unified Diff: ppapi/shared_impl/ppapi_preferences.cc

Issue 12079111: Allow separately blacklisting Stage3D baseline mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/shared_impl/ppapi_preferences.h ('k') | webkit/glue/webpreferences.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/shared_impl/ppapi_preferences.cc
diff --git a/ppapi/shared_impl/ppapi_preferences.cc b/ppapi/shared_impl/ppapi_preferences.cc
index 3a2bffae2a9e506aa4a8bbd4ff5f85deb2633db1..a3ac41353ed7ae2d0b53dd70d003e330e79bb999 100644
--- a/ppapi/shared_impl/ppapi_preferences.cc
+++ b/ppapi/shared_impl/ppapi_preferences.cc
@@ -11,7 +11,8 @@ Preferences::Preferences()
default_fixed_font_size(0),
number_of_cpu_cores(0),
is_3d_supported(true),
- is_stage3d_supported(false) {
+ is_stage3d_supported(false),
+ is_stage3d_baseline_supported(false) {
}
Preferences::Preferences(const webkit_glue::WebPreferences& prefs)
@@ -24,6 +25,7 @@ Preferences::Preferences(const webkit_glue::WebPreferences& prefs)
number_of_cpu_cores(prefs.number_of_cpu_cores),
is_3d_supported(prefs.flash_3d_enabled),
is_stage3d_supported(prefs.flash_stage3d_enabled),
+ is_stage3d_baseline_supported(prefs.flash_stage3d_baseline_enabled),
// This determines both if webgl is supported (experimental_webgl_enabled)
// and if it runs in hardware
// (accelerated_compositing_for_plugins_enabled)
« no previous file with comments | « ppapi/shared_impl/ppapi_preferences.h ('k') | webkit/glue/webpreferences.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698