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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 virtual void setAllowRunningOfInsecureContent(bool) OVERRIDE; | 71 virtual void setAllowRunningOfInsecureContent(bool) OVERRIDE; |
72 virtual void setAllowScriptsToCloseWindows(bool) OVERRIDE; | 72 virtual void setAllowScriptsToCloseWindows(bool) OVERRIDE; |
73 virtual void setAllowUniversalAccessFromFileURLs(bool) OVERRIDE; | 73 virtual void setAllowUniversalAccessFromFileURLs(bool) OVERRIDE; |
74 virtual void setAntialiased2dCanvasEnabled(bool) OVERRIDE; | 74 virtual void setAntialiased2dCanvasEnabled(bool) OVERRIDE; |
75 virtual void setAsynchronousSpellCheckingEnabled(bool) OVERRIDE; | 75 virtual void setAsynchronousSpellCheckingEnabled(bool) OVERRIDE; |
76 virtual void setAutoZoomFocusedNodeToLegibleScale(bool) OVERRIDE; | 76 virtual void setAutoZoomFocusedNodeToLegibleScale(bool) OVERRIDE; |
77 virtual void setCaretBrowsingEnabled(bool) OVERRIDE; | 77 virtual void setCaretBrowsingEnabled(bool) OVERRIDE; |
78 virtual void setClobberUserAgentInitialScaleQuirk(bool) OVERRIDE; | 78 virtual void setClobberUserAgentInitialScaleQuirk(bool) OVERRIDE; |
79 virtual void setCompositedScrollingForFramesEnabled(bool) OVERRIDE; | 79 virtual void setCompositedScrollingForFramesEnabled(bool) OVERRIDE; |
80 virtual void setCompositorTouchHitTesting(bool) OVERRIDE; | 80 virtual void setCompositorTouchHitTesting(bool) OVERRIDE; |
| 81 virtual void setContainerCullingEnabled(bool) OVERRIDE; |
81 virtual void setCookieEnabled(bool) OVERRIDE; | 82 virtual void setCookieEnabled(bool) OVERRIDE; |
82 virtual void setNavigateOnDragDrop(bool) OVERRIDE; | 83 virtual void setNavigateOnDragDrop(bool) OVERRIDE; |
83 virtual void setCursiveFontFamily(const WebString&, UScriptCode = USCRIPT_CO
MMON) OVERRIDE; | 84 virtual void setCursiveFontFamily(const WebString&, UScriptCode = USCRIPT_CO
MMON) OVERRIDE; |
84 virtual void setDNSPrefetchingEnabled(bool) OVERRIDE; | 85 virtual void setDNSPrefetchingEnabled(bool) OVERRIDE; |
85 virtual void setDOMPasteAllowed(bool) OVERRIDE; | 86 virtual void setDOMPasteAllowed(bool) OVERRIDE; |
86 virtual void setDefaultFixedFontSize(int) OVERRIDE; | 87 virtual void setDefaultFixedFontSize(int) OVERRIDE; |
87 virtual void setDefaultFontSize(int) OVERRIDE; | 88 virtual void setDefaultFontSize(int) OVERRIDE; |
88 virtual void setDefaultTextEncodingName(const WebString&) OVERRIDE; | 89 virtual void setDefaultTextEncodingName(const WebString&) OVERRIDE; |
89 virtual void setDefaultVideoPosterURL(const WebString&) OVERRIDE; | 90 virtual void setDefaultVideoPosterURL(const WebString&) OVERRIDE; |
90 virtual void setDeferredFiltersEnabled(bool) OVERRIDE; | 91 virtual void setDeferredFiltersEnabled(bool) OVERRIDE; |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 // This quirk is to maintain compatibility with Android apps built on | 220 // This quirk is to maintain compatibility with Android apps built on |
220 // the Android SDK prior to and including version 18. Presumably, this | 221 // the Android SDK prior to and including version 18. Presumably, this |
221 // can be removed any time after 2015. See http://crbug.com/313754. | 222 // can be removed any time after 2015. See http://crbug.com/313754. |
222 bool m_clobberUserAgentInitialScaleQuirk; | 223 bool m_clobberUserAgentInitialScaleQuirk; |
223 bool m_mainFrameResizesAreOrientationChanges; | 224 bool m_mainFrameResizesAreOrientationChanges; |
224 }; | 225 }; |
225 | 226 |
226 } // namespace blink | 227 } // namespace blink |
227 | 228 |
228 #endif | 229 #endif |
OLD | NEW |