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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 virtual void setExperimentalCSSGridLayoutEnabled(bool); | 92 virtual void setExperimentalCSSGridLayoutEnabled(bool); |
93 virtual void setCSSStickyPositionEnabled(bool); | 93 virtual void setCSSStickyPositionEnabled(bool); |
94 virtual void setExperimentalCSSVariablesEnabled(bool); | 94 virtual void setExperimentalCSSVariablesEnabled(bool); |
95 virtual void setExperimentalWebGLEnabled(bool); | 95 virtual void setExperimentalWebGLEnabled(bool); |
96 virtual void setFantasyFontFamily(const WebString&, UScriptCode = USCRIPT_CO
MMON); | 96 virtual void setFantasyFontFamily(const WebString&, UScriptCode = USCRIPT_CO
MMON); |
97 virtual void setFixedElementsLayoutRelativeToFrame(bool); | 97 virtual void setFixedElementsLayoutRelativeToFrame(bool); |
98 virtual void setFixedFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON); | 98 virtual void setFixedFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON); |
99 virtual void setFixedPositionCreatesStackingContext(bool); | 99 virtual void setFixedPositionCreatesStackingContext(bool); |
100 virtual void setFontRenderingModeNormal(); | 100 virtual void setFontRenderingModeNormal(); |
101 virtual void setForceCompositingMode(bool); | 101 virtual void setForceCompositingMode(bool); |
102 virtual void setFrameFlatteningEnabled(bool); | |
103 virtual void setFullScreenEnabled(bool); | 102 virtual void setFullScreenEnabled(bool); |
104 virtual void setGestureTapHighlightEnabled(bool); | 103 virtual void setGestureTapHighlightEnabled(bool); |
105 virtual void setHyperlinkAuditingEnabled(bool); | 104 virtual void setHyperlinkAuditingEnabled(bool); |
106 virtual void setImagesEnabled(bool); | 105 virtual void setImagesEnabled(bool); |
107 virtual void setInitializeAtMinimumPageScale(bool); | 106 virtual void setInitializeAtMinimumPageScale(bool); |
108 virtual void setInteractiveFormValidationEnabled(bool); | 107 virtual void setInteractiveFormValidationEnabled(bool); |
109 virtual void setJavaEnabled(bool); | 108 virtual void setJavaEnabled(bool); |
110 virtual void setJavaScriptCanAccessClipboard(bool); | 109 virtual void setJavaScriptCanAccessClipboard(bool); |
111 virtual void setJavaScriptCanOpenWindowsAutomatically(bool); | 110 virtual void setJavaScriptCanOpenWindowsAutomatically(bool); |
112 virtual void setJavaScriptEnabled(bool); | 111 virtual void setJavaScriptEnabled(bool); |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 bool m_autoZoomFocusedNodeToLegibleScale; | 192 bool m_autoZoomFocusedNodeToLegibleScale; |
194 bool m_deferredImageDecodingEnabled; | 193 bool m_deferredImageDecodingEnabled; |
195 bool m_doubleTapToZoomEnabled; | 194 bool m_doubleTapToZoomEnabled; |
196 bool m_perTilePaintingEnabled; | 195 bool m_perTilePaintingEnabled; |
197 bool m_supportDeprecatedTargetDensityDPI; | 196 bool m_supportDeprecatedTargetDensityDPI; |
198 }; | 197 }; |
199 | 198 |
200 } // namespace WebKit | 199 } // namespace WebKit |
201 | 200 |
202 #endif | 201 #endif |
OLD | NEW |