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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 virtual void setFullscreenSupported(bool) override; | 99 virtual void setFullscreenSupported(bool) override; |
100 virtual void setHyperlinkAuditingEnabled(bool) override; | 100 virtual void setHyperlinkAuditingEnabled(bool) override; |
101 virtual void setIgnoreMainFrameOverflowHiddenQuirk(bool) override; | 101 virtual void setIgnoreMainFrameOverflowHiddenQuirk(bool) override; |
102 virtual void setImageAnimationPolicy(ImageAnimationPolicy) override; | 102 virtual void setImageAnimationPolicy(ImageAnimationPolicy) override; |
103 virtual void setImagesEnabled(bool) override; | 103 virtual void setImagesEnabled(bool) override; |
104 virtual void setInlineTextBoxAccessibilityEnabled(bool) override; | 104 virtual void setInlineTextBoxAccessibilityEnabled(bool) override; |
105 virtual void setJavaEnabled(bool) override; | 105 virtual void setJavaEnabled(bool) override; |
106 virtual void setJavaScriptCanAccessClipboard(bool) override; | 106 virtual void setJavaScriptCanAccessClipboard(bool) override; |
107 virtual void setJavaScriptCanOpenWindowsAutomatically(bool) override; | 107 virtual void setJavaScriptCanOpenWindowsAutomatically(bool) override; |
108 virtual void setJavaScriptEnabled(bool) override; | 108 virtual void setJavaScriptEnabled(bool) override; |
109 virtual void setLayerSquashingEnabled(bool) override; | |
110 virtual void setLoadsImagesAutomatically(bool) override; | 109 virtual void setLoadsImagesAutomatically(bool) override; |
111 virtual void setLoadWithOverviewMode(bool) override; | 110 virtual void setLoadWithOverviewMode(bool) override; |
112 virtual void setLocalStorageEnabled(bool) override; | 111 virtual void setLocalStorageEnabled(bool) override; |
113 virtual void setMainFrameClipsContent(bool) override; | 112 virtual void setMainFrameClipsContent(bool) override; |
114 virtual void setMainFrameResizesAreOrientationChanges(bool) override; | 113 virtual void setMainFrameResizesAreOrientationChanges(bool) override; |
115 virtual void setMaxTouchPoints(int) override; | 114 virtual void setMaxTouchPoints(int) override; |
116 virtual void setMediaControlsOverlayPlayButtonEnabled(bool) override; | 115 virtual void setMediaControlsOverlayPlayButtonEnabled(bool) override; |
117 virtual void setMediaPlaybackRequiresUserGesture(bool) override; | 116 virtual void setMediaPlaybackRequiresUserGesture(bool) override; |
118 virtual void setMinimumAccelerated2dCanvasSize(int) override; | 117 virtual void setMinimumAccelerated2dCanvasSize(int) override; |
119 virtual void setMinimumFontSize(int) override; | 118 virtual void setMinimumFontSize(int) override; |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 // This quirk is to maintain compatibility with Android apps built on | 218 // This quirk is to maintain compatibility with Android apps built on |
220 // the Android SDK prior to and including version 18. Presumably, this | 219 // the Android SDK prior to and including version 18. Presumably, this |
221 // can be removed any time after 2015. See http://crbug.com/313754. | 220 // can be removed any time after 2015. See http://crbug.com/313754. |
222 bool m_clobberUserAgentInitialScaleQuirk; | 221 bool m_clobberUserAgentInitialScaleQuirk; |
223 bool m_mainFrameResizesAreOrientationChanges; | 222 bool m_mainFrameResizesAreOrientationChanges; |
224 }; | 223 }; |
225 | 224 |
226 } // namespace blink | 225 } // namespace blink |
227 | 226 |
228 #endif | 227 #endif |
OLD | NEW |