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

Side by Side Diff: sky/engine/web/WebSettingsImpl.h

Issue 681583002: Remove pinch viewports. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: upload synced patch Created 6 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 virtual void setMainFrameResizesAreOrientationChanges(bool) override; 99 virtual void setMainFrameResizesAreOrientationChanges(bool) override;
100 virtual void setMaxTouchPoints(int) override; 100 virtual void setMaxTouchPoints(int) override;
101 virtual void setMediaControlsOverlayPlayButtonEnabled(bool) override; 101 virtual void setMediaControlsOverlayPlayButtonEnabled(bool) override;
102 virtual void setMediaPlaybackRequiresUserGesture(bool) override; 102 virtual void setMediaPlaybackRequiresUserGesture(bool) override;
103 virtual void setMinimumAccelerated2dCanvasSize(int) override; 103 virtual void setMinimumAccelerated2dCanvasSize(int) override;
104 virtual void setMinimumFontSize(int) override; 104 virtual void setMinimumFontSize(int) override;
105 virtual void setMinimumLogicalFontSize(int) override; 105 virtual void setMinimumLogicalFontSize(int) override;
106 virtual void setOpenGLMultisamplingEnabled(bool) override; 106 virtual void setOpenGLMultisamplingEnabled(bool) override;
107 virtual void setPerTilePaintingEnabled(bool) override; 107 virtual void setPerTilePaintingEnabled(bool) override;
108 virtual void setPictographFontFamily(const WebString&, UScriptCode = USCRIPT _COMMON) override; 108 virtual void setPictographFontFamily(const WebString&, UScriptCode = USCRIPT _COMMON) override;
109 virtual void setPinchOverlayScrollbarThickness(int) override;
110 virtual void setPinchVirtualViewportEnabled(bool) override;
111 virtual void setAvailablePointerTypes(int) override; 109 virtual void setAvailablePointerTypes(int) override;
112 virtual void setPrimaryPointerType(PointerType) override; 110 virtual void setPrimaryPointerType(PointerType) override;
113 virtual void setAvailableHoverTypes(int) override; 111 virtual void setAvailableHoverTypes(int) override;
114 virtual void setPrimaryHoverType(HoverType) override; 112 virtual void setPrimaryHoverType(HoverType) override;
115 virtual void setRenderVSyncNotificationEnabled(bool) override; 113 virtual void setRenderVSyncNotificationEnabled(bool) override;
116 virtual void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_ COMMON) override; 114 virtual void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_ COMMON) override;
117 virtual void setSelectionIncludesAltImageText(bool) override; 115 virtual void setSelectionIncludesAltImageText(bool) override;
118 virtual void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMM ON) override; 116 virtual void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMM ON) override;
119 virtual void setShouldClearDocumentBackground(bool) override; 117 virtual void setShouldClearDocumentBackground(bool) override;
120 virtual void setShouldRespectImageOrientation(bool) override; 118 virtual void setShouldRespectImageOrientation(bool) override;
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 bool m_doubleTapToZoomEnabled; 158 bool m_doubleTapToZoomEnabled;
161 bool m_perTilePaintingEnabled; 159 bool m_perTilePaintingEnabled;
162 bool m_supportDeprecatedTargetDensityDPI; 160 bool m_supportDeprecatedTargetDensityDPI;
163 bool m_shrinksViewportContentToFit; 161 bool m_shrinksViewportContentToFit;
164 bool m_mainFrameResizesAreOrientationChanges; 162 bool m_mainFrameResizesAreOrientationChanges;
165 }; 163 };
166 164
167 } // namespace blink 165 } // namespace blink
168 166
169 #endif 167 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698