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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 bool multiTargetTapNotificationEnabled() override; | 95 bool multiTargetTapNotificationEnabled() override; |
96 void setMultiTargetTapNotificationEnabled(bool) override; | 96 void setMultiTargetTapNotificationEnabled(bool) override; |
97 void setExperimentalWebGLEnabled(bool) override; | 97 void setExperimentalWebGLEnabled(bool) override; |
98 void setFantasyFontFamily(const WebString&, | 98 void setFantasyFontFamily(const WebString&, |
99 UScriptCode = USCRIPT_COMMON) override; | 99 UScriptCode = USCRIPT_COMMON) override; |
100 void setFixedFontFamily(const WebString&, | 100 void setFixedFontFamily(const WebString&, |
101 UScriptCode = USCRIPT_COMMON) override; | 101 UScriptCode = USCRIPT_COMMON) override; |
102 void setForcePreloadNoneForMediaElements(bool) override; | 102 void setForcePreloadNoneForMediaElements(bool) override; |
103 void setForceZeroLayoutHeight(bool) override; | 103 void setForceZeroLayoutHeight(bool) override; |
104 void setFullscreenSupported(bool) override; | 104 void setFullscreenSupported(bool) override; |
| 105 void setHideDownloadUI(bool) override; |
105 void setHistoryEntryRequiresUserGesture(bool) override; | 106 void setHistoryEntryRequiresUserGesture(bool) override; |
106 void setHyperlinkAuditingEnabled(bool) override; | 107 void setHyperlinkAuditingEnabled(bool) override; |
107 void setIgnoreMainFrameOverflowHiddenQuirk(bool) override; | 108 void setIgnoreMainFrameOverflowHiddenQuirk(bool) override; |
108 void setImageAnimationPolicy(ImageAnimationPolicy) override; | 109 void setImageAnimationPolicy(ImageAnimationPolicy) override; |
109 void setImagesEnabled(bool) override; | 110 void setImagesEnabled(bool) override; |
110 void setInlineTextBoxAccessibilityEnabled(bool) override; | 111 void setInlineTextBoxAccessibilityEnabled(bool) override; |
111 void setInertVisualViewport(bool) override; | 112 void setInertVisualViewport(bool) override; |
112 void setJavaScriptCanAccessClipboard(bool) override; | 113 void setJavaScriptCanAccessClipboard(bool) override; |
113 void setJavaScriptCanOpenWindowsAutomatically(bool) override; | 114 void setJavaScriptCanOpenWindowsAutomatically(bool) override; |
114 void setJavaScriptEnabled(bool) override; | 115 void setJavaScriptEnabled(bool) override; |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 bool m_viewportMetaNonUserScalableQuirk; | 251 bool m_viewportMetaNonUserScalableQuirk; |
251 // This quirk is to maintain compatibility with Android apps built on | 252 // This quirk is to maintain compatibility with Android apps built on |
252 // the Android SDK prior to and including version 18. Presumably, this | 253 // the Android SDK prior to and including version 18. Presumably, this |
253 // can be removed any time after 2015. See http://crbug.com/313754. | 254 // can be removed any time after 2015. See http://crbug.com/313754. |
254 bool m_clobberUserAgentInitialScaleQuirk; | 255 bool m_clobberUserAgentInitialScaleQuirk; |
255 }; | 256 }; |
256 | 257 |
257 } // namespace blink | 258 } // namespace blink |
258 | 259 |
259 #endif | 260 #endif |
OLD | NEW |