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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 virtual void setShrinksStandaloneImagesToFit(bool); | 144 virtual void setShrinksStandaloneImagesToFit(bool); |
145 virtual void setSmartInsertDeleteEnabled(bool); | 145 virtual void setSmartInsertDeleteEnabled(bool); |
146 virtual void setSpatialNavigationEnabled(bool); | 146 virtual void setSpatialNavigationEnabled(bool); |
147 virtual void setStandardFontFamily(const WebString&, UScriptCode = USCRIPT_C
OMMON); | 147 virtual void setStandardFontFamily(const WebString&, UScriptCode = USCRIPT_C
OMMON); |
148 virtual void setSupportDeprecatedTargetDensityDPI(bool); | 148 virtual void setSupportDeprecatedTargetDensityDPI(bool); |
149 virtual void setSupportsMultipleWindows(bool); | 149 virtual void setSupportsMultipleWindows(bool); |
150 virtual void setSyncXHRInDocumentsEnabled(bool); | 150 virtual void setSyncXHRInDocumentsEnabled(bool); |
151 virtual void setTextAreasAreResizable(bool); | 151 virtual void setTextAreasAreResizable(bool); |
152 virtual void setTextAutosizingEnabled(bool); | 152 virtual void setTextAutosizingEnabled(bool); |
153 virtual void setTextAutosizingFontScaleFactor(float); | 153 virtual void setTextAutosizingFontScaleFactor(float); |
154 virtual void setTextDirectionSubmenuInclusionBehaviorNeverIncluded(); | |
155 virtual void setTouchDragDropEnabled(bool); | 154 virtual void setTouchDragDropEnabled(bool); |
156 virtual void setTouchEditingEnabled(bool); | 155 virtual void setTouchEditingEnabled(bool); |
157 virtual void setThreadedHTMLParser(bool); | 156 virtual void setThreadedHTMLParser(bool); |
158 virtual void setUnifiedTextCheckerEnabled(bool); | 157 virtual void setUnifiedTextCheckerEnabled(bool); |
159 virtual void setUnsafePluginPastingEnabled(bool); | 158 virtual void setUnsafePluginPastingEnabled(bool); |
160 virtual void setUserStyleSheetLocation(const WebURL&); | 159 virtual void setUserStyleSheetLocation(const WebURL&); |
161 virtual void setUsesEncodingDetector(bool); | 160 virtual void setUsesEncodingDetector(bool); |
162 virtual void setUseWideViewport(bool); | 161 virtual void setUseWideViewport(bool); |
163 virtual void setValidationMessageTimerMagnification(int); | 162 virtual void setValidationMessageTimerMagnification(int); |
164 virtual void setViewportEnabled(bool); | 163 virtual void setViewportEnabled(bool); |
(...skipping 26 matching lines...) Expand all Loading... |
191 bool m_autoZoomFocusedNodeToLegibleScale; | 190 bool m_autoZoomFocusedNodeToLegibleScale; |
192 bool m_deferredImageDecodingEnabled; | 191 bool m_deferredImageDecodingEnabled; |
193 bool m_doubleTapToZoomEnabled; | 192 bool m_doubleTapToZoomEnabled; |
194 bool m_perTilePaintingEnabled; | 193 bool m_perTilePaintingEnabled; |
195 bool m_supportDeprecatedTargetDensityDPI; | 194 bool m_supportDeprecatedTargetDensityDPI; |
196 }; | 195 }; |
197 | 196 |
198 } // namespace WebKit | 197 } // namespace WebKit |
199 | 198 |
200 #endif | 199 #endif |
OLD | NEW |