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

Unified Diff: content/public/common/renderer_preferences.cc

Issue 2006113002: Allow hw secured codecs on chromecast (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: New flag, new key system property Created 4 years, 7 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
Index: content/public/common/renderer_preferences.cc
diff --git a/content/public/common/renderer_preferences.cc b/content/public/common/renderer_preferences.cc
index 797dd9bb524a2d2b465509917384a97173d9310b..5c1b12f7c2856943e8daa31270ee65aa1d487794 100644
--- a/content/public/common/renderer_preferences.cc
+++ b/content/public/common/renderer_preferences.cc
@@ -36,9 +36,11 @@ RendererPreferences::RendererPreferences()
disable_client_blocked_error_page(false),
plugin_fullscreen_allowed(true),
use_video_overlay_for_embedded_encrypted_video(false),
- use_view_overlay_for_all_video(false)
+ use_view_overlay_for_all_video(false),
+ hw_secure_codec_allowed(false)
#if defined(OS_WIN)
- , caption_font_height(0),
+ ,
+ caption_font_height(0),
small_caption_font_height(0),
menu_font_height(0),
status_font_height(0),
@@ -48,8 +50,8 @@ RendererPreferences::RendererPreferences()
arrow_bitmap_height_vertical_scroll_bar_in_dips(0),
arrow_bitmap_width_horizontal_scroll_bar_in_dips(0)
#endif
- , default_font_size(0)
-{}
+ ,
+ default_font_size(0) {}
RendererPreferences::RendererPreferences(const RendererPreferences& other) =
default;

Powered by Google App Engine
This is Rietveld 408576698