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

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

Issue 1660193007: [Presentation API] Adding a flag to disable gesture check for starting presentations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 #ifndef CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_ 5 #ifndef CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_
6 #define CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_ 6 #define CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 bool supports_multiple_windows; 167 bool supports_multiple_windows;
168 bool viewport_enabled; 168 bool viewport_enabled;
169 bool viewport_meta_enabled; 169 bool viewport_meta_enabled;
170 bool main_frame_resizes_are_orientation_changes; 170 bool main_frame_resizes_are_orientation_changes;
171 bool initialize_at_minimum_page_scale; 171 bool initialize_at_minimum_page_scale;
172 bool smart_insert_delete_enabled; 172 bool smart_insert_delete_enabled;
173 bool spatial_navigation_enabled; 173 bool spatial_navigation_enabled;
174 int pinch_overlay_scrollbar_thickness; 174 int pinch_overlay_scrollbar_thickness;
175 bool use_solid_color_scrollbars; 175 bool use_solid_color_scrollbars;
176 bool navigate_on_drag_drop; 176 bool navigate_on_drag_drop;
177 bool user_gesture_required_for_presentation;
177 V8CacheOptions v8_cache_options; 178 V8CacheOptions v8_cache_options;
178 179
179 // This flags corresponds to a Page's Settings' setCookieEnabled state. It 180 // This flags corresponds to a Page's Settings' setCookieEnabled state. It
180 // only controls whether or not the "document.cookie" field is properly 181 // only controls whether or not the "document.cookie" field is properly
181 // connected to the backing store, for instance if you wanted to be able to 182 // connected to the backing store, for instance if you wanted to be able to
182 // define custom getters and setters from within a unique security content 183 // define custom getters and setters from within a unique security content
183 // without raising a DOM security exception. 184 // without raising a DOM security exception.
184 bool cookie_enabled; 185 bool cookie_enabled;
185 186
186 // This flag indicates whether H/W accelerated video decode is enabled for 187 // This flag indicates whether H/W accelerated video decode is enabled for
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 // We try to keep the default values the same as the default values in 224 // We try to keep the default values the same as the default values in
224 // chrome, except for the cases where it would require lots of extra work for 225 // chrome, except for the cases where it would require lots of extra work for
225 // the embedder to use the same default value. 226 // the embedder to use the same default value.
226 WebPreferences(); 227 WebPreferences();
227 ~WebPreferences(); 228 ~WebPreferences();
228 }; 229 };
229 230
230 } // namespace content 231 } // namespace content
231 232
232 #endif // CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_ 233 #endif // CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698