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

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

Issue 2536723007: Removed android scrolling fake mouse moves and device_supports_mouse (Closed)
Patch Set: Made checks mirror what previous logic 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
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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 UScriptCode = USCRIPT_COMMON) override; 73 UScriptCode = USCRIPT_COMMON) override;
74 void setDNSPrefetchingEnabled(bool) override; 74 void setDNSPrefetchingEnabled(bool) override;
75 void setDataSaverEnabled(bool) override; 75 void setDataSaverEnabled(bool) override;
76 void setDOMPasteAllowed(bool) override; 76 void setDOMPasteAllowed(bool) override;
77 void setDefaultFixedFontSize(int) override; 77 void setDefaultFixedFontSize(int) override;
78 void setDefaultFontSize(int) override; 78 void setDefaultFontSize(int) override;
79 void setDefaultTextEncodingName(const WebString&) override; 79 void setDefaultTextEncodingName(const WebString&) override;
80 void setDefaultVideoPosterURL(const WebString&) override; 80 void setDefaultVideoPosterURL(const WebString&) override;
81 void setDeviceScaleAdjustment(float) override; 81 void setDeviceScaleAdjustment(float) override;
82 82
83 // FIXME: Replace these two with pointer/hover queries? crbug.com/441813 83 // FIXME: Replace these two with pointer/hover queries? crbug.com/441813
aelias_OOO_until_Jul13 2016/12/02 05:33:14 "Replace this"
amaralp 2016/12/02 23:00:36 Done.
84 void setDeviceSupportsMouse(bool) override;
85 void setDeviceSupportsTouch(bool) override; 84 void setDeviceSupportsTouch(bool) override;
86 85
87 void setDisableReadingFromCanvas(bool) override; 86 void setDisableReadingFromCanvas(bool) override;
88 void setDoubleTapToZoomEnabled(bool) override; 87 void setDoubleTapToZoomEnabled(bool) override;
89 void setDownloadableBinaryFontsEnabled(bool) override; 88 void setDownloadableBinaryFontsEnabled(bool) override;
90 void setEditingBehavior(EditingBehavior) override; 89 void setEditingBehavior(EditingBehavior) override;
91 void setEnableScrollAnimator(bool) override; 90 void setEnableScrollAnimator(bool) override;
92 void setEnableTouchAdjustment(bool) override; 91 void setEnableTouchAdjustment(bool) override;
93 bool multiTargetTapNotificationEnabled() override; 92 bool multiTargetTapNotificationEnabled() override;
94 void setMultiTargetTapNotificationEnabled(bool) override; 93 void setMultiTargetTapNotificationEnabled(bool) override;
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 bool m_clobberUserAgentInitialScaleQuirk; 269 bool m_clobberUserAgentInitialScaleQuirk;
271 float m_expensiveBackgroundThrottlingCPUBudget; 270 float m_expensiveBackgroundThrottlingCPUBudget;
272 float m_expensiveBackgroundThrottlingInitialBudget; 271 float m_expensiveBackgroundThrottlingInitialBudget;
273 float m_expensiveBackgroundThrottlingMaxBudget; 272 float m_expensiveBackgroundThrottlingMaxBudget;
274 float m_expensiveBackgroundThrottlingMaxDelay; 273 float m_expensiveBackgroundThrottlingMaxDelay;
275 }; 274 };
276 275
277 } // namespace blink 276 } // namespace blink
278 277
279 #endif 278 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698