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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 virtual void setDownloadableBinaryFontsEnabled(bool) OVERRIDE; | 97 virtual void setDownloadableBinaryFontsEnabled(bool) OVERRIDE; |
98 virtual void setEditableLinkBehaviorNeverLive() OVERRIDE; | 98 virtual void setEditableLinkBehaviorNeverLive() OVERRIDE; |
99 virtual void setEditingBehavior(EditingBehavior) OVERRIDE; | 99 virtual void setEditingBehavior(EditingBehavior) OVERRIDE; |
100 virtual void setEnableScrollAnimator(bool) OVERRIDE; | 100 virtual void setEnableScrollAnimator(bool) OVERRIDE; |
101 virtual void setEnableTouchAdjustment(bool) OVERRIDE; | 101 virtual void setEnableTouchAdjustment(bool) OVERRIDE; |
102 virtual void setRegionBasedColumnsEnabled(bool) OVERRIDE; | 102 virtual void setRegionBasedColumnsEnabled(bool) OVERRIDE; |
103 virtual void setExperimentalWebGLEnabled(bool) OVERRIDE; | 103 virtual void setExperimentalWebGLEnabled(bool) OVERRIDE; |
104 virtual void setExperimentalWebSocketEnabled(bool) OVERRIDE; | 104 virtual void setExperimentalWebSocketEnabled(bool) OVERRIDE; |
105 virtual void setFantasyFontFamily(const WebString&, UScriptCode = USCRIPT_CO
MMON) OVERRIDE; | 105 virtual void setFantasyFontFamily(const WebString&, UScriptCode = USCRIPT_CO
MMON) OVERRIDE; |
106 virtual void setFixedFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON) OVERRIDE; | 106 virtual void setFixedFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON) OVERRIDE; |
107 virtual void setFixedPositionCreatesStackingContext(bool) OVERRIDE; | |
108 virtual void setForceCompositingMode(bool) OVERRIDE; | 107 virtual void setForceCompositingMode(bool) OVERRIDE; |
109 virtual void setFullScreenEnabled(bool) OVERRIDE; | 108 virtual void setFullScreenEnabled(bool) OVERRIDE; |
110 virtual void setGestureTapHighlightEnabled(bool) OVERRIDE; | 109 virtual void setGestureTapHighlightEnabled(bool) OVERRIDE; |
111 virtual void setHyperlinkAuditingEnabled(bool) OVERRIDE; | 110 virtual void setHyperlinkAuditingEnabled(bool) OVERRIDE; |
112 virtual void setIgnoreMainFrameOverflowHiddenQuirk(bool) OVERRIDE; | 111 virtual void setIgnoreMainFrameOverflowHiddenQuirk(bool) OVERRIDE; |
113 virtual void setImagesEnabled(bool) OVERRIDE; | 112 virtual void setImagesEnabled(bool) OVERRIDE; |
114 virtual void setJavaEnabled(bool) OVERRIDE; | 113 virtual void setJavaEnabled(bool) OVERRIDE; |
115 virtual void setJavaScriptCanAccessClipboard(bool) OVERRIDE; | 114 virtual void setJavaScriptCanAccessClipboard(bool) OVERRIDE; |
116 virtual void setJavaScriptCanOpenWindowsAutomatically(bool) OVERRIDE; | 115 virtual void setJavaScriptCanOpenWindowsAutomatically(bool) OVERRIDE; |
117 virtual void setJavaScriptEnabled(bool) OVERRIDE; | 116 virtual void setJavaScriptEnabled(bool) OVERRIDE; |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 // This quirk is to maintain compatibility with Android apps built on | 220 // This quirk is to maintain compatibility with Android apps built on |
222 // the Android SDK prior to and including version 18. Presumably, this | 221 // the Android SDK prior to and including version 18. Presumably, this |
223 // can be removed any time after 2015. See http://crbug.com/313754. | 222 // can be removed any time after 2015. See http://crbug.com/313754. |
224 bool m_clobberUserAgentInitialScaleQuirk; | 223 bool m_clobberUserAgentInitialScaleQuirk; |
225 bool m_mainFrameResizesAreOrientationChanges; | 224 bool m_mainFrameResizesAreOrientationChanges; |
226 }; | 225 }; |
227 | 226 |
228 } // namespace blink | 227 } // namespace blink |
229 | 228 |
230 #endif | 229 #endif |
OLD | NEW |