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

Side by Side Diff: Source/WebKit/chromium/src/WebSettingsImpl.h

Issue 16799005: Insert pinch zoom virtual viewport layers to graphics layer tree. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Skip creating WebScrollbarLayers, defer to creation in CC. Created 7 years, 6 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 | Annotate | Revision Log
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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 169
170 bool showFPSCounter() const { return m_showFPSCounter; } 170 bool showFPSCounter() const { return m_showFPSCounter; }
171 bool showPaintRects() const { return m_showPaintRects; } 171 bool showPaintRects() const { return m_showPaintRects; }
172 bool renderVSyncNotificationEnabled() const { return m_renderVSyncNotificati onEnabled; } 172 bool renderVSyncNotificationEnabled() const { return m_renderVSyncNotificati onEnabled; }
173 bool autoZoomFocusedNodeToLegibleScale() const { return m_autoZoomFocusedNod eToLegibleScale; } 173 bool autoZoomFocusedNodeToLegibleScale() const { return m_autoZoomFocusedNod eToLegibleScale; }
174 bool gestureTapHighlightEnabled() const { return m_gestureTapHighlightEnable d; } 174 bool gestureTapHighlightEnabled() const { return m_gestureTapHighlightEnable d; }
175 bool doubleTapToZoomEnabled() const { return m_doubleTapToZoomEnabled; } 175 bool doubleTapToZoomEnabled() const { return m_doubleTapToZoomEnabled; }
176 bool perTilePaintingEnabled() const { return m_perTilePaintingEnabled; } 176 bool perTilePaintingEnabled() const { return m_perTilePaintingEnabled; }
177 bool supportDeprecatedTargetDensityDPI() const { return m_supportDeprecatedT argetDensityDPI; } 177 bool supportDeprecatedTargetDensityDPI() const { return m_supportDeprecatedT argetDensityDPI; }
178 178
179 int pinchOverlayScrollbarThickness() const { return m_pinchOverlayScrollbarT hickness; }
180
179 private: 181 private:
180 WebCore::Settings* m_settings; 182 WebCore::Settings* m_settings;
181 bool m_showFPSCounter; 183 bool m_showFPSCounter;
182 bool m_showPaintRects; 184 bool m_showPaintRects;
183 bool m_renderVSyncNotificationEnabled; 185 bool m_renderVSyncNotificationEnabled;
184 bool m_viewportEnabled; 186 bool m_viewportEnabled;
185 bool m_gestureTapHighlightEnabled; 187 bool m_gestureTapHighlightEnabled;
186 bool m_autoZoomFocusedNodeToLegibleScale; 188 bool m_autoZoomFocusedNodeToLegibleScale;
187 bool m_deferredImageDecodingEnabled; 189 bool m_deferredImageDecodingEnabled;
188 bool m_doubleTapToZoomEnabled; 190 bool m_doubleTapToZoomEnabled;
189 bool m_perTilePaintingEnabled; 191 bool m_perTilePaintingEnabled;
190 bool m_supportDeprecatedTargetDensityDPI; 192 bool m_supportDeprecatedTargetDensityDPI;
193
194 int m_pinchOverlayScrollbarThickness;
191 }; 195 };
192 196
193 } // namespace WebKit 197 } // namespace WebKit
194 198
195 #endif 199 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698