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

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

Issue 2885033007: Disable color/date chooser in VR mode via WebPreferences (Closed)
Patch Set: added explanatory comment. Created 3 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 unified diff | Download patch
« no previous file with comments | « content/public/common/web_preferences.h ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 clobber_user_agent_initial_scale_quirk(false), 203 clobber_user_agent_initial_scale_quirk(false),
204 ignore_main_frame_overflow_hidden_quirk(false), 204 ignore_main_frame_overflow_hidden_quirk(false),
205 report_screen_size_in_physical_pixels_quirk(false), 205 report_screen_size_in_physical_pixels_quirk(false),
206 resue_global_for_unowned_main_frame(false), 206 resue_global_for_unowned_main_frame(false),
207 progress_bar_completion(ProgressBarCompletion::LOAD_EVENT), 207 progress_bar_completion(ProgressBarCompletion::LOAD_EVENT),
208 spellcheck_enabled_by_default(true), 208 spellcheck_enabled_by_default(true),
209 video_fullscreen_orientation_lock_enabled(false), 209 video_fullscreen_orientation_lock_enabled(false),
210 video_rotate_to_fullscreen_enabled(false), 210 video_rotate_to_fullscreen_enabled(false),
211 video_fullscreen_detection_enabled(false), 211 video_fullscreen_detection_enabled(false),
212 embedded_media_experience_enabled(false), 212 embedded_media_experience_enabled(false),
213 page_popups_suppressed(false),
213 #endif // defined(OS_ANDROID) 214 #endif // defined(OS_ANDROID)
214 #if defined(OS_ANDROID) 215 #if defined(OS_ANDROID)
215 default_minimum_page_scale_factor(0.25f), 216 default_minimum_page_scale_factor(0.25f),
216 default_maximum_page_scale_factor(5.f), 217 default_maximum_page_scale_factor(5.f),
217 #elif defined(OS_MACOSX) 218 #elif defined(OS_MACOSX)
218 default_minimum_page_scale_factor(1.f), 219 default_minimum_page_scale_factor(1.f),
219 default_maximum_page_scale_factor(3.f), 220 default_maximum_page_scale_factor(3.f),
220 #else 221 #else
221 default_minimum_page_scale_factor(1.f), 222 default_minimum_page_scale_factor(1.f),
222 default_maximum_page_scale_factor(4.f), 223 default_maximum_page_scale_factor(4.f),
(...skipping 19 matching lines...) Expand all
242 pictograph_font_family_map[kCommonScript] = 243 pictograph_font_family_map[kCommonScript] =
243 base::ASCIIToUTF16("Times New Roman"); 244 base::ASCIIToUTF16("Times New Roman");
244 } 245 }
245 246
246 WebPreferences::WebPreferences(const WebPreferences& other) = default; 247 WebPreferences::WebPreferences(const WebPreferences& other) = default;
247 248
248 WebPreferences::~WebPreferences() { 249 WebPreferences::~WebPreferences() {
249 } 250 }
250 251
251 } // namespace content 252 } // namespace content
OLDNEW
« no previous file with comments | « content/public/common/web_preferences.h ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698