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

Side by Side Diff: Source/web/WebSettingsImpl.h

Issue 20598008: Add maxTouchPoints for pointer events (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: maxTouchPoints the right way Created 7 years, 2 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 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 virtual void setImagesEnabled(bool); 109 virtual void setImagesEnabled(bool);
110 virtual void setJavaEnabled(bool); 110 virtual void setJavaEnabled(bool);
111 virtual void setJavaScriptCanAccessClipboard(bool); 111 virtual void setJavaScriptCanAccessClipboard(bool);
112 virtual void setJavaScriptCanOpenWindowsAutomatically(bool); 112 virtual void setJavaScriptCanOpenWindowsAutomatically(bool);
113 virtual void setJavaScriptEnabled(bool); 113 virtual void setJavaScriptEnabled(bool);
114 virtual void setLayoutFallbackWidth(int); 114 virtual void setLayoutFallbackWidth(int);
115 virtual void setLoadsImagesAutomatically(bool); 115 virtual void setLoadsImagesAutomatically(bool);
116 virtual void setLoadWithOverviewMode(bool); 116 virtual void setLoadWithOverviewMode(bool);
117 virtual void setLocalStorageEnabled(bool); 117 virtual void setLocalStorageEnabled(bool);
118 virtual void setMainFrameClipsContent(bool); 118 virtual void setMainFrameClipsContent(bool);
119 virtual void setMaxTouchPoints(int);
119 virtual void setMediaPlaybackRequiresUserGesture(bool); 120 virtual void setMediaPlaybackRequiresUserGesture(bool);
120 virtual void setMediaFullscreenRequiresUserGesture(bool); 121 virtual void setMediaFullscreenRequiresUserGesture(bool);
121 virtual void setMemoryInfoEnabled(bool); 122 virtual void setMemoryInfoEnabled(bool);
122 virtual void setMinimumAccelerated2dCanvasSize(int); 123 virtual void setMinimumAccelerated2dCanvasSize(int);
123 virtual void setMinimumFontSize(int); 124 virtual void setMinimumFontSize(int);
124 virtual void setMinimumLogicalFontSize(int); 125 virtual void setMinimumLogicalFontSize(int);
125 virtual void setMockScrollbarsEnabled(bool); 126 virtual void setMockScrollbarsEnabled(bool);
126 virtual void setNeedsSiteSpecificQuirks(bool); 127 virtual void setNeedsSiteSpecificQuirks(bool);
127 virtual void setOfflineWebApplicationCacheEnabled(bool); 128 virtual void setOfflineWebApplicationCacheEnabled(bool);
128 virtual void setOpenGLMultisamplingEnabled(bool); 129 virtual void setOpenGLMultisamplingEnabled(bool);
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 // This quirk is to maintain compatibility with Android apps built on 203 // This quirk is to maintain compatibility with Android apps built on
203 // the Android SDK prior to and including version 18. Presumably, this 204 // the Android SDK prior to and including version 18. Presumably, this
204 // can be removed any time after 2015. See http://crbug.com/277369. 205 // can be removed any time after 2015. See http://crbug.com/277369.
205 bool m_viewportMetaLayoutSizeQuirk; 206 bool m_viewportMetaLayoutSizeQuirk;
206 int m_pinchOverlayScrollbarThickness; 207 int m_pinchOverlayScrollbarThickness;
207 }; 208 };
208 209
209 } // namespace WebKit 210 } // namespace WebKit
210 211
211 #endif 212 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698