| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 setForceCompositingMode(bool) OVERRIDE; | 107 virtual void setForceCompositingMode(bool) OVERRIDE; |
| 108 virtual void setFullScreenEnabled(bool) OVERRIDE; | |
| 109 virtual void setGestureTapHighlightEnabled(bool) OVERRIDE; | 108 virtual void setGestureTapHighlightEnabled(bool) OVERRIDE; |
| 110 virtual void setHyperlinkAuditingEnabled(bool) OVERRIDE; | 109 virtual void setHyperlinkAuditingEnabled(bool) OVERRIDE; |
| 111 virtual void setIgnoreMainFrameOverflowHiddenQuirk(bool) OVERRIDE; | 110 virtual void setIgnoreMainFrameOverflowHiddenQuirk(bool) OVERRIDE; |
| 112 virtual void setImagesEnabled(bool) OVERRIDE; | 111 virtual void setImagesEnabled(bool) OVERRIDE; |
| 113 virtual void setJavaEnabled(bool) OVERRIDE; | 112 virtual void setJavaEnabled(bool) OVERRIDE; |
| 114 virtual void setJavaScriptCanAccessClipboard(bool) OVERRIDE; | 113 virtual void setJavaScriptCanAccessClipboard(bool) OVERRIDE; |
| 115 virtual void setJavaScriptCanOpenWindowsAutomatically(bool) OVERRIDE; | 114 virtual void setJavaScriptCanOpenWindowsAutomatically(bool) OVERRIDE; |
| 116 virtual void setJavaScriptEnabled(bool) OVERRIDE; | 115 virtual void setJavaScriptEnabled(bool) OVERRIDE; |
| 117 virtual void setLayerSquashingEnabled(bool) OVERRIDE; | 116 virtual void setLayerSquashingEnabled(bool) OVERRIDE; |
| 118 virtual void setLayoutFallbackWidth(int) OVERRIDE; | 117 virtual void setLayoutFallbackWidth(int) OVERRIDE; |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 // This quirk is to maintain compatibility with Android apps built on | 219 // This quirk is to maintain compatibility with Android apps built on |
| 221 // the Android SDK prior to and including version 18. Presumably, this | 220 // the Android SDK prior to and including version 18. Presumably, this |
| 222 // can be removed any time after 2015. See http://crbug.com/313754. | 221 // can be removed any time after 2015. See http://crbug.com/313754. |
| 223 bool m_clobberUserAgentInitialScaleQuirk; | 222 bool m_clobberUserAgentInitialScaleQuirk; |
| 224 bool m_mainFrameResizesAreOrientationChanges; | 223 bool m_mainFrameResizesAreOrientationChanges; |
| 225 }; | 224 }; |
| 226 | 225 |
| 227 } // namespace blink | 226 } // namespace blink |
| 228 | 227 |
| 229 #endif | 228 #endif |
| OLD | NEW |