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

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

Issue 2547373002: Rename TouchEventAPI to TouchEventFeatureDetection (Closed)
Patch Set: Merge branch 'master' of https://chromium.googlesource.com/chromium/src into rename Created 4 years 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 disable_reading_from_canvas(false), 120 disable_reading_from_canvas(false),
121 strict_mixed_content_checking(false), 121 strict_mixed_content_checking(false),
122 strict_powerful_feature_restrictions(false), 122 strict_powerful_feature_restrictions(false),
123 allow_geolocation_on_insecure_origins(false), 123 allow_geolocation_on_insecure_origins(false),
124 strictly_block_blockable_mixed_content(false), 124 strictly_block_blockable_mixed_content(false),
125 block_mixed_plugin_content(false), 125 block_mixed_plugin_content(false),
126 password_echo_enabled(false), 126 password_echo_enabled(false),
127 should_print_backgrounds(false), 127 should_print_backgrounds(false),
128 should_clear_document_background(true), 128 should_clear_document_background(true),
129 enable_scroll_animator(false), 129 enable_scroll_animator(false),
130 touch_event_api_enabled(false), 130 touch_event_feature_detection_enabled(false),
131 device_supports_touch(false), 131 device_supports_touch(false),
132 device_supports_mouse(true), 132 device_supports_mouse(true),
133 touch_adjustment_enabled(true), 133 touch_adjustment_enabled(true),
134 pointer_events_max_touch_points(0), 134 pointer_events_max_touch_points(0),
135 available_pointer_types(0), 135 available_pointer_types(0),
136 primary_pointer_type(ui::POINTER_TYPE_NONE), 136 primary_pointer_type(ui::POINTER_TYPE_NONE),
137 available_hover_types(0), 137 available_hover_types(0),
138 primary_hover_type(ui::HOVER_TYPE_NONE), 138 primary_hover_type(ui::HOVER_TYPE_NONE),
139 sync_xhr_in_documents_enabled(true), 139 sync_xhr_in_documents_enabled(true),
140 should_respect_image_orientation(false), 140 should_respect_image_orientation(false),
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 pictograph_font_family_map[kCommonScript] = 235 pictograph_font_family_map[kCommonScript] =
236 base::ASCIIToUTF16("Times New Roman"); 236 base::ASCIIToUTF16("Times New Roman");
237 } 237 }
238 238
239 WebPreferences::WebPreferences(const WebPreferences& other) = default; 239 WebPreferences::WebPreferences(const WebPreferences& other) = default;
240 240
241 WebPreferences::~WebPreferences() { 241 WebPreferences::~WebPreferences() {
242 } 242 }
243 243
244 } // namespace content 244 } // 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