| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 virtual void setDisallowFullscreenForNonMediaElements(bool) OVERRIDE; | 89 virtual void setDisallowFullscreenForNonMediaElements(bool) OVERRIDE; |
| 90 virtual void setDoubleTapToZoomEnabled(bool) OVERRIDE; | 90 virtual void setDoubleTapToZoomEnabled(bool) OVERRIDE; |
| 91 virtual void setDownloadableBinaryFontsEnabled(bool) OVERRIDE; | 91 virtual void setDownloadableBinaryFontsEnabled(bool) OVERRIDE; |
| 92 virtual void setEditingBehavior(EditingBehavior) OVERRIDE; | 92 virtual void setEditingBehavior(EditingBehavior) OVERRIDE; |
| 93 virtual void setEnableScrollAnimator(bool) OVERRIDE; | 93 virtual void setEnableScrollAnimator(bool) OVERRIDE; |
| 94 virtual void setEnableTouchAdjustment(bool) OVERRIDE; | 94 virtual void setEnableTouchAdjustment(bool) OVERRIDE; |
| 95 virtual void setRegionBasedColumnsEnabled(bool) OVERRIDE; | 95 virtual void setRegionBasedColumnsEnabled(bool) OVERRIDE; |
| 96 virtual void setExperimentalWebGLEnabled(bool) OVERRIDE; | 96 virtual void setExperimentalWebGLEnabled(bool) OVERRIDE; |
| 97 virtual void setFantasyFontFamily(const WebString&, UScriptCode = USCRIPT_CO
MMON) OVERRIDE; | 97 virtual void setFantasyFontFamily(const WebString&, UScriptCode = USCRIPT_CO
MMON) OVERRIDE; |
| 98 virtual void setFixedFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON) OVERRIDE; | 98 virtual void setFixedFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON) OVERRIDE; |
| 99 virtual void setForceZeroLayoutHeight(bool) OVERRIDE; | |
| 100 virtual void setFullscreenSupported(bool) OVERRIDE; | 99 virtual void setFullscreenSupported(bool) OVERRIDE; |
| 101 virtual void setHyperlinkAuditingEnabled(bool) OVERRIDE; | 100 virtual void setHyperlinkAuditingEnabled(bool) OVERRIDE; |
| 102 virtual void setIgnoreMainFrameOverflowHiddenQuirk(bool) OVERRIDE; | 101 virtual void setIgnoreMainFrameOverflowHiddenQuirk(bool) OVERRIDE; |
| 103 virtual void setImagesEnabled(bool) OVERRIDE; | 102 virtual void setImagesEnabled(bool) OVERRIDE; |
| 104 virtual void setJavaEnabled(bool) OVERRIDE; | 103 virtual void setJavaEnabled(bool) OVERRIDE; |
| 105 virtual void setJavaScriptCanAccessClipboard(bool) OVERRIDE; | 104 virtual void setJavaScriptCanAccessClipboard(bool) OVERRIDE; |
| 106 virtual void setJavaScriptCanOpenWindowsAutomatically(bool) OVERRIDE; | 105 virtual void setJavaScriptCanOpenWindowsAutomatically(bool) OVERRIDE; |
| 107 virtual void setJavaScriptEnabled(bool) OVERRIDE; | 106 virtual void setJavaScriptEnabled(bool) OVERRIDE; |
| 108 virtual void setLayerSquashingEnabled(bool) OVERRIDE; | 107 virtual void setLayerSquashingEnabled(bool) OVERRIDE; |
| 109 virtual void setLoadsImagesAutomatically(bool) OVERRIDE; | 108 virtual void setLoadsImagesAutomatically(bool) OVERRIDE; |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 // This quirk is to maintain compatibility with Android apps built on | 207 // This quirk is to maintain compatibility with Android apps built on |
| 209 // the Android SDK prior to and including version 18. Presumably, this | 208 // the Android SDK prior to and including version 18. Presumably, this |
| 210 // can be removed any time after 2015. See http://crbug.com/313754. | 209 // can be removed any time after 2015. See http://crbug.com/313754. |
| 211 bool m_clobberUserAgentInitialScaleQuirk; | 210 bool m_clobberUserAgentInitialScaleQuirk; |
| 212 bool m_mainFrameResizesAreOrientationChanges; | 211 bool m_mainFrameResizesAreOrientationChanges; |
| 213 }; | 212 }; |
| 214 | 213 |
| 215 } // namespace blink | 214 } // namespace blink |
| 216 | 215 |
| 217 #endif | 216 #endif |
| OLD | NEW |