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

Side by Side Diff: content/public/common/web_preferences.cc

Issue 2628313002: [Media] Plumb a feature parameter for the background video keyframe distance. (Closed)
Patch Set: Created 3 years, 11 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/web_preferences.h" 5 #include "content/public/common/web_preferences.h"
6 6
7 #include "base/strings/string_util.h" 7 #include "base/strings/string_util.h"
8 #include "base/strings/utf_string_conversions.h" 8 #include "base/strings/utf_string_conversions.h"
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "third_party/WebKit/public/web/WebSettings.h" 10 #include "third_party/WebKit/public/web/WebSettings.h"
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 default_maximum_page_scale_factor(5.f), 216 default_maximum_page_scale_factor(5.f),
217 #elif defined(OS_MACOSX) 217 #elif defined(OS_MACOSX)
218 default_minimum_page_scale_factor(1.f), 218 default_minimum_page_scale_factor(1.f),
219 default_maximum_page_scale_factor(3.f), 219 default_maximum_page_scale_factor(3.f),
220 #else 220 #else
221 default_minimum_page_scale_factor(1.f), 221 default_minimum_page_scale_factor(1.f),
222 default_maximum_page_scale_factor(4.f), 222 default_maximum_page_scale_factor(4.f),
223 #endif 223 #endif
224 hide_download_ui(false), 224 hide_download_ui(false),
225 background_video_track_optimization_enabled(false), 225 background_video_track_optimization_enabled(false),
226 max_keyframe_distance_to_disable_background_video_sec(10),
226 presentation_receiver(false) { 227 presentation_receiver(false) {
227 standard_font_family_map[kCommonScript] = 228 standard_font_family_map[kCommonScript] =
228 base::ASCIIToUTF16("Times New Roman"); 229 base::ASCIIToUTF16("Times New Roman");
229 fixed_font_family_map[kCommonScript] = base::ASCIIToUTF16("Courier New"); 230 fixed_font_family_map[kCommonScript] = base::ASCIIToUTF16("Courier New");
230 serif_font_family_map[kCommonScript] = base::ASCIIToUTF16("Times New Roman"); 231 serif_font_family_map[kCommonScript] = base::ASCIIToUTF16("Times New Roman");
231 sans_serif_font_family_map[kCommonScript] = base::ASCIIToUTF16("Arial"); 232 sans_serif_font_family_map[kCommonScript] = base::ASCIIToUTF16("Arial");
232 cursive_font_family_map[kCommonScript] = base::ASCIIToUTF16("Script"); 233 cursive_font_family_map[kCommonScript] = base::ASCIIToUTF16("Script");
233 fantasy_font_family_map[kCommonScript] = base::ASCIIToUTF16("Impact"); 234 fantasy_font_family_map[kCommonScript] = base::ASCIIToUTF16("Impact");
234 pictograph_font_family_map[kCommonScript] = 235 pictograph_font_family_map[kCommonScript] =
235 base::ASCIIToUTF16("Times New Roman"); 236 base::ASCIIToUTF16("Times New Roman");
236 } 237 }
237 238
238 WebPreferences::WebPreferences(const WebPreferences& other) = default; 239 WebPreferences::WebPreferences(const WebPreferences& other) = default;
239 240
240 WebPreferences::~WebPreferences() { 241 WebPreferences::~WebPreferences() {
241 } 242 }
242 243
243 } // namespace content 244 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698