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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 virtual void setContainerCullingEnabled(bool) override; | 70 virtual void setContainerCullingEnabled(bool) override; |
71 virtual void setCookieEnabled(bool) override; | 71 virtual void setCookieEnabled(bool) override; |
72 virtual void setNavigateOnDragDrop(bool) override; | 72 virtual void setNavigateOnDragDrop(bool) override; |
73 virtual void setCursiveFontFamily(const WebString&, UScriptCode = USCRIPT_CO
MMON) override; | 73 virtual void setCursiveFontFamily(const WebString&, UScriptCode = USCRIPT_CO
MMON) override; |
74 virtual void setDNSPrefetchingEnabled(bool) override; | 74 virtual void setDNSPrefetchingEnabled(bool) override; |
75 virtual void setDOMPasteAllowed(bool) override; | 75 virtual void setDOMPasteAllowed(bool) override; |
76 virtual void setDefaultFixedFontSize(int) override; | 76 virtual void setDefaultFixedFontSize(int) override; |
77 virtual void setDefaultFontSize(int) override; | 77 virtual void setDefaultFontSize(int) override; |
78 virtual void setDefaultTextEncodingName(const WebString&) override; | 78 virtual void setDefaultTextEncodingName(const WebString&) override; |
79 virtual void setDefaultVideoPosterURL(const WebString&) override; | 79 virtual void setDefaultVideoPosterURL(const WebString&) override; |
80 virtual void setDeferredFiltersEnabled(bool) override; | |
81 virtual void setDeferredImageDecodingEnabled(bool) override; | 80 virtual void setDeferredImageDecodingEnabled(bool) override; |
82 virtual void setDeviceScaleAdjustment(float) override; | 81 virtual void setDeviceScaleAdjustment(float) override; |
83 virtual void setDeviceSupportsMouse(bool) override; | 82 virtual void setDeviceSupportsMouse(bool) override; |
84 | 83 |
85 // FIXME: Remove once the pointer/hover features are converted to use the | 84 // FIXME: Remove once the pointer/hover features are converted to use the |
86 // new APIs (e.g. setPrimaryPointerType) on the chromium side | 85 // new APIs (e.g. setPrimaryPointerType) on the chromium side |
87 virtual void setDeviceSupportsTouch(bool) override; | 86 virtual void setDeviceSupportsTouch(bool) override; |
88 | 87 |
89 virtual void setDisallowFullscreenForNonMediaElements(bool) override; | 88 virtual void setDisallowFullscreenForNonMediaElements(bool) override; |
90 virtual void setDoubleTapToZoomEnabled(bool) override; | 89 virtual void setDoubleTapToZoomEnabled(bool) override; |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 // This quirk is to maintain compatibility with Android apps built on | 214 // This quirk is to maintain compatibility with Android apps built on |
216 // the Android SDK prior to and including version 18. Presumably, this | 215 // the Android SDK prior to and including version 18. Presumably, this |
217 // can be removed any time after 2015. See http://crbug.com/313754. | 216 // can be removed any time after 2015. See http://crbug.com/313754. |
218 bool m_clobberUserAgentInitialScaleQuirk; | 217 bool m_clobberUserAgentInitialScaleQuirk; |
219 bool m_mainFrameResizesAreOrientationChanges; | 218 bool m_mainFrameResizesAreOrientationChanges; |
220 }; | 219 }; |
221 | 220 |
222 } // namespace blink | 221 } // namespace blink |
223 | 222 |
224 #endif | 223 #endif |
OLD | NEW |