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

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

Issue 49913005: Add Settings::deviceScaleAdjustment. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Address review comments. Created 7 years, 1 month 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 virtual void setCookieEnabled(bool); 80 virtual void setCookieEnabled(bool);
81 virtual void setCursiveFontFamily(const WebString&, UScriptCode = USCRIPT_CO MMON); 81 virtual void setCursiveFontFamily(const WebString&, UScriptCode = USCRIPT_CO MMON);
82 virtual void setDNSPrefetchingEnabled(bool); 82 virtual void setDNSPrefetchingEnabled(bool);
83 virtual void setDOMPasteAllowed(bool); 83 virtual void setDOMPasteAllowed(bool);
84 virtual void setDefaultFixedFontSize(int); 84 virtual void setDefaultFixedFontSize(int);
85 virtual void setDefaultFontSize(int); 85 virtual void setDefaultFontSize(int);
86 virtual void setDefaultTextEncodingName(const WebString&); 86 virtual void setDefaultTextEncodingName(const WebString&);
87 virtual void setDefaultVideoPosterURL(const WebString&); 87 virtual void setDefaultVideoPosterURL(const WebString&);
88 virtual void setDeferred2dCanvasEnabled(bool); 88 virtual void setDeferred2dCanvasEnabled(bool);
89 virtual void setDeferredImageDecodingEnabled(bool); 89 virtual void setDeferredImageDecodingEnabled(bool);
90 virtual void setDeviceScaleAdjustment(float);
90 virtual void setDeviceSupportsMouse(bool); 91 virtual void setDeviceSupportsMouse(bool);
91 virtual void setDeviceSupportsTouch(bool); 92 virtual void setDeviceSupportsTouch(bool);
92 virtual void setDoubleTapToZoomEnabled(bool); 93 virtual void setDoubleTapToZoomEnabled(bool);
93 virtual void setDownloadableBinaryFontsEnabled(bool); 94 virtual void setDownloadableBinaryFontsEnabled(bool);
94 virtual void setEditableLinkBehaviorNeverLive(); 95 virtual void setEditableLinkBehaviorNeverLive();
95 virtual void setEditingBehavior(EditingBehavior); 96 virtual void setEditingBehavior(EditingBehavior);
96 virtual void setEnableScrollAnimator(bool); 97 virtual void setEnableScrollAnimator(bool);
97 virtual void setEnableTouchAdjustment(bool); 98 virtual void setEnableTouchAdjustment(bool);
98 virtual void setRegionBasedColumnsEnabled(bool); 99 virtual void setRegionBasedColumnsEnabled(bool);
99 virtual void setExperimentalWebGLEnabled(bool); 100 virtual void setExperimentalWebGLEnabled(bool);
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 // This quirk is to maintain compatibility with Android apps built on 208 // This quirk is to maintain compatibility with Android apps built on
208 // the Android SDK prior to and including version 18. Presumably, this 209 // the Android SDK prior to and including version 18. Presumably, this
209 // can be removed any time after 2015. See http://crbug.com/277369. 210 // can be removed any time after 2015. See http://crbug.com/277369.
210 bool m_viewportMetaLayoutSizeQuirk; 211 bool m_viewportMetaLayoutSizeQuirk;
211 int m_pinchOverlayScrollbarThickness; 212 int m_pinchOverlayScrollbarThickness;
212 }; 213 };
213 214
214 } // namespace WebKit 215 } // namespace WebKit
215 216
216 #endif 217 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698