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

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

Issue 1841053002: Fix mouse wheel scrolling on PDFs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix unittest Created 4 years, 8 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 void setV8CacheOptions(V8CacheOptions) override; 184 void setV8CacheOptions(V8CacheOptions) override;
185 void setValidationMessageTimerMagnification(int) override; 185 void setValidationMessageTimerMagnification(int) override;
186 void setViewportEnabled(bool) override; 186 void setViewportEnabled(bool) override;
187 void setViewportMetaEnabled(bool) override; 187 void setViewportMetaEnabled(bool) override;
188 void setViewportMetaLayoutSizeQuirk(bool) override; 188 void setViewportMetaLayoutSizeQuirk(bool) override;
189 void setViewportMetaMergeContentQuirk(bool) override; 189 void setViewportMetaMergeContentQuirk(bool) override;
190 void setViewportMetaNonUserScalableQuirk(bool) override; 190 void setViewportMetaNonUserScalableQuirk(bool) override;
191 void setViewportMetaZeroValuesQuirk(bool) override; 191 void setViewportMetaZeroValuesQuirk(bool) override;
192 void setWebGLErrorsToConsoleEnabled(bool) override; 192 void setWebGLErrorsToConsoleEnabled(bool) override;
193 void setWebSecurityEnabled(bool) override; 193 void setWebSecurityEnabled(bool) override;
194 void setWheelGesturesEnabled(bool) override;
194 void setWideViewportQuirkEnabled(bool) override; 195 void setWideViewportQuirkEnabled(bool) override;
195 void setXSSAuditorEnabled(bool) override; 196 void setXSSAuditorEnabled(bool) override;
196 197
197 bool showFPSCounter() const { return m_showFPSCounter; } 198 bool showFPSCounter() const { return m_showFPSCounter; }
198 bool showPaintRects() const { return m_showPaintRects; } 199 bool showPaintRects() const { return m_showPaintRects; }
199 bool renderVSyncNotificationEnabled() const { return m_renderVSyncNotificati onEnabled; } 200 bool renderVSyncNotificationEnabled() const { return m_renderVSyncNotificati onEnabled; }
200 bool autoZoomFocusedNodeToLegibleScale() const { return m_autoZoomFocusedNod eToLegibleScale; } 201 bool autoZoomFocusedNodeToLegibleScale() const { return m_autoZoomFocusedNod eToLegibleScale; }
201 bool doubleTapToZoomEnabled() const; 202 bool doubleTapToZoomEnabled() const;
202 bool perTilePaintingEnabled() const { return m_perTilePaintingEnabled; } 203 bool perTilePaintingEnabled() const { return m_perTilePaintingEnabled; }
203 bool supportDeprecatedTargetDensityDPI() const { return m_supportDeprecatedT argetDensityDPI; } 204 bool supportDeprecatedTargetDensityDPI() const { return m_supportDeprecatedT argetDensityDPI; }
(...skipping 25 matching lines...) Expand all
229 bool m_viewportMetaNonUserScalableQuirk; 230 bool m_viewportMetaNonUserScalableQuirk;
230 // This quirk is to maintain compatibility with Android apps built on 231 // This quirk is to maintain compatibility with Android apps built on
231 // the Android SDK prior to and including version 18. Presumably, this 232 // the Android SDK prior to and including version 18. Presumably, this
232 // can be removed any time after 2015. See http://crbug.com/313754. 233 // can be removed any time after 2015. See http://crbug.com/313754.
233 bool m_clobberUserAgentInitialScaleQuirk; 234 bool m_clobberUserAgentInitialScaleQuirk;
234 }; 235 };
235 236
236 } // namespace blink 237 } // namespace blink
237 238
238 #endif 239 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698