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

Side by Side 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, 6 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/public/common/renderer_preferences.h" 5 #include "content/public/common/renderer_preferences.h"
6 6
7 #include "build/build_config.h" 7 #include "build/build_config.h"
8 #include "third_party/skia/include/core/SkColor.h" 8 #include "third_party/skia/include/core/SkColor.h"
9 #include "ui/gfx/font_render_params.h" 9 #include "ui/gfx/font_render_params.h"
10 10
(...skipping 18 matching lines...) Expand all
29 browser_handles_all_top_level_requests(false), 29 browser_handles_all_top_level_requests(false),
30 caret_blink_interval(0.5), 30 caret_blink_interval(0.5),
31 use_custom_colors(true), 31 use_custom_colors(true),
32 enable_referrers(true), 32 enable_referrers(true),
33 enable_do_not_track(false), 33 enable_do_not_track(false),
34 report_frame_name_changes(false), 34 report_frame_name_changes(false),
35 tap_multiple_targets_strategy(TAP_MULTIPLE_TARGETS_STRATEGY_POPUP), 35 tap_multiple_targets_strategy(TAP_MULTIPLE_TARGETS_STRATEGY_POPUP),
36 disable_client_blocked_error_page(false), 36 disable_client_blocked_error_page(false),
37 plugin_fullscreen_allowed(true), 37 plugin_fullscreen_allowed(true),
38 use_video_overlay_for_embedded_encrypted_video(false), 38 use_video_overlay_for_embedded_encrypted_video(false),
39 use_view_overlay_for_all_video(false) 39 use_view_overlay_for_all_video(false),
40 hw_secure_codec_allowed(false)
40 #if defined(OS_WIN) 41 #if defined(OS_WIN)
41 , caption_font_height(0), 42 ,
43 caption_font_height(0),
42 small_caption_font_height(0), 44 small_caption_font_height(0),
43 menu_font_height(0), 45 menu_font_height(0),
44 status_font_height(0), 46 status_font_height(0),
45 message_font_height(0), 47 message_font_height(0),
46 vertical_scroll_bar_width_in_dips(0), 48 vertical_scroll_bar_width_in_dips(0),
47 horizontal_scroll_bar_height_in_dips(0), 49 horizontal_scroll_bar_height_in_dips(0),
48 arrow_bitmap_height_vertical_scroll_bar_in_dips(0), 50 arrow_bitmap_height_vertical_scroll_bar_in_dips(0),
49 arrow_bitmap_width_horizontal_scroll_bar_in_dips(0) 51 arrow_bitmap_width_horizontal_scroll_bar_in_dips(0)
50 #endif 52 #endif
51 , default_font_size(0) 53 ,
52 {} 54 default_font_size(0) {}
53 55
54 RendererPreferences::RendererPreferences(const RendererPreferences& other) = 56 RendererPreferences::RendererPreferences(const RendererPreferences& other) =
55 default; 57 default;
56 58
57 RendererPreferences::~RendererPreferences() { } 59 RendererPreferences::~RendererPreferences() { }
58 60
59 } // namespace content 61 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698