| OLD | NEW |
| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 virtual void setMinimumFontSize(int); | 119 virtual void setMinimumFontSize(int); |
| 120 virtual void setMinimumLogicalFontSize(int); | 120 virtual void setMinimumLogicalFontSize(int); |
| 121 virtual void setMockScrollbarsEnabled(bool); | 121 virtual void setMockScrollbarsEnabled(bool); |
| 122 virtual void setNeedsSiteSpecificQuirks(bool); | 122 virtual void setNeedsSiteSpecificQuirks(bool); |
| 123 virtual void setOfflineWebApplicationCacheEnabled(bool); | 123 virtual void setOfflineWebApplicationCacheEnabled(bool); |
| 124 virtual void setOpenGLMultisamplingEnabled(bool); | 124 virtual void setOpenGLMultisamplingEnabled(bool); |
| 125 virtual void setPasswordEchoDurationInSeconds(double); | 125 virtual void setPasswordEchoDurationInSeconds(double); |
| 126 virtual void setPasswordEchoEnabled(bool); | 126 virtual void setPasswordEchoEnabled(bool); |
| 127 virtual void setPerTilePaintingEnabled(bool); | 127 virtual void setPerTilePaintingEnabled(bool); |
| 128 virtual void setPictographFontFamily(const WebString&, UScriptCode = USCRIPT
_COMMON); | 128 virtual void setPictographFontFamily(const WebString&, UScriptCode = USCRIPT
_COMMON); |
| 129 virtual void setPinchOverlayScrollbarThickness(int); |
| 129 virtual void setPinchVirtualViewportEnabled(bool); | 130 virtual void setPinchVirtualViewportEnabled(bool); |
| 130 virtual void setPluginsEnabled(bool); | 131 virtual void setPluginsEnabled(bool); |
| 131 virtual void setPrivilegedWebGLExtensionsEnabled(bool); | 132 virtual void setPrivilegedWebGLExtensionsEnabled(bool); |
| 132 virtual void setRenderVSyncNotificationEnabled(bool); | 133 virtual void setRenderVSyncNotificationEnabled(bool); |
| 133 virtual void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_
COMMON); | 134 virtual void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_
COMMON); |
| 134 virtual void setSelectTrailingWhitespaceEnabled(bool); | 135 virtual void setSelectTrailingWhitespaceEnabled(bool); |
| 135 virtual void setSelectionIncludesAltImageText(bool); | 136 virtual void setSelectionIncludesAltImageText(bool); |
| 136 virtual void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON); | 137 virtual void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON); |
| 137 virtual void setShouldDisplayCaptions(bool); | 138 virtual void setShouldDisplayCaptions(bool); |
| 138 virtual void setShouldDisplaySubtitles(bool); | 139 virtual void setShouldDisplaySubtitles(bool); |
| (...skipping 30 matching lines...) Expand all Loading... |
| 169 virtual void setXSSAuditorEnabled(bool); | 170 virtual void setXSSAuditorEnabled(bool); |
| 170 | 171 |
| 171 bool showFPSCounter() const { return m_showFPSCounter; } | 172 bool showFPSCounter() const { return m_showFPSCounter; } |
| 172 bool showPaintRects() const { return m_showPaintRects; } | 173 bool showPaintRects() const { return m_showPaintRects; } |
| 173 bool renderVSyncNotificationEnabled() const { return m_renderVSyncNotificati
onEnabled; } | 174 bool renderVSyncNotificationEnabled() const { return m_renderVSyncNotificati
onEnabled; } |
| 174 bool autoZoomFocusedNodeToLegibleScale() const { return m_autoZoomFocusedNod
eToLegibleScale; } | 175 bool autoZoomFocusedNodeToLegibleScale() const { return m_autoZoomFocusedNod
eToLegibleScale; } |
| 175 bool gestureTapHighlightEnabled() const { return m_gestureTapHighlightEnable
d; } | 176 bool gestureTapHighlightEnabled() const { return m_gestureTapHighlightEnable
d; } |
| 176 bool doubleTapToZoomEnabled() const { return m_doubleTapToZoomEnabled; } | 177 bool doubleTapToZoomEnabled() const { return m_doubleTapToZoomEnabled; } |
| 177 bool perTilePaintingEnabled() const { return m_perTilePaintingEnabled; } | 178 bool perTilePaintingEnabled() const { return m_perTilePaintingEnabled; } |
| 178 bool supportDeprecatedTargetDensityDPI() const { return m_supportDeprecatedT
argetDensityDPI; } | 179 bool supportDeprecatedTargetDensityDPI() const { return m_supportDeprecatedT
argetDensityDPI; } |
| 180 int pinchOverlayScrollbarThickness() const { return m_pinchOverlayScrollbarT
hickness; } |
| 179 | 181 |
| 180 private: | 182 private: |
| 181 WebCore::Settings* m_settings; | 183 WebCore::Settings* m_settings; |
| 182 bool m_showFPSCounter; | 184 bool m_showFPSCounter; |
| 183 bool m_showPaintRects; | 185 bool m_showPaintRects; |
| 184 bool m_renderVSyncNotificationEnabled; | 186 bool m_renderVSyncNotificationEnabled; |
| 185 bool m_viewportEnabled; | 187 bool m_viewportEnabled; |
| 186 bool m_gestureTapHighlightEnabled; | 188 bool m_gestureTapHighlightEnabled; |
| 187 bool m_autoZoomFocusedNodeToLegibleScale; | 189 bool m_autoZoomFocusedNodeToLegibleScale; |
| 188 bool m_deferredImageDecodingEnabled; | 190 bool m_deferredImageDecodingEnabled; |
| 189 bool m_doubleTapToZoomEnabled; | 191 bool m_doubleTapToZoomEnabled; |
| 190 bool m_perTilePaintingEnabled; | 192 bool m_perTilePaintingEnabled; |
| 191 bool m_supportDeprecatedTargetDensityDPI; | 193 bool m_supportDeprecatedTargetDensityDPI; |
| 194 int m_pinchOverlayScrollbarThickness; |
| 192 }; | 195 }; |
| 193 | 196 |
| 194 } // namespace WebKit | 197 } // namespace WebKit |
| 195 | 198 |
| 196 #endif | 199 #endif |
| OLD | NEW |