| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 virtual void setMinimumFontSize(int); | 120 virtual void setMinimumFontSize(int); |
| 121 virtual void setMinimumLogicalFontSize(int); | 121 virtual void setMinimumLogicalFontSize(int); |
| 122 virtual void setMockScrollbarsEnabled(bool); | 122 virtual void setMockScrollbarsEnabled(bool); |
| 123 virtual void setNeedsSiteSpecificQuirks(bool); | 123 virtual void setNeedsSiteSpecificQuirks(bool); |
| 124 virtual void setOfflineWebApplicationCacheEnabled(bool); | 124 virtual void setOfflineWebApplicationCacheEnabled(bool); |
| 125 virtual void setOpenGLMultisamplingEnabled(bool); | 125 virtual void setOpenGLMultisamplingEnabled(bool); |
| 126 virtual void setPasswordEchoDurationInSeconds(double); | 126 virtual void setPasswordEchoDurationInSeconds(double); |
| 127 virtual void setPasswordEchoEnabled(bool); | 127 virtual void setPasswordEchoEnabled(bool); |
| 128 virtual void setPerTilePaintingEnabled(bool); | 128 virtual void setPerTilePaintingEnabled(bool); |
| 129 virtual void setPictographFontFamily(const WebString&, UScriptCode = USCRIPT
_COMMON); | 129 virtual void setPictographFontFamily(const WebString&, UScriptCode = USCRIPT
_COMMON); |
| 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); |
| 139 virtual void setShouldDisplayTextDescriptions(bool); | 140 virtual void setShouldDisplayTextDescriptions(bool); |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 bool m_autoZoomFocusedNodeToLegibleScale; | 192 bool m_autoZoomFocusedNodeToLegibleScale; |
| 192 bool m_deferredImageDecodingEnabled; | 193 bool m_deferredImageDecodingEnabled; |
| 193 bool m_doubleTapToZoomEnabled; | 194 bool m_doubleTapToZoomEnabled; |
| 194 bool m_perTilePaintingEnabled; | 195 bool m_perTilePaintingEnabled; |
| 195 bool m_supportDeprecatedTargetDensityDPI; | 196 bool m_supportDeprecatedTargetDensityDPI; |
| 196 }; | 197 }; |
| 197 | 198 |
| 198 } // namespace WebKit | 199 } // namespace WebKit |
| 199 | 200 |
| 200 #endif | 201 #endif |
| OLD | NEW |