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 setAllowCustomScrollbarInMainFrame(bool) OVERRIDE; | 70 virtual void setAllowCustomScrollbarInMainFrame(bool) OVERRIDE; |
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 setCompositorDrivenScrollAnimationsEnabled(bool) OVERRIDE; |
80 virtual void setCompositorTouchHitTesting(bool) OVERRIDE; | 81 virtual void setCompositorTouchHitTesting(bool) OVERRIDE; |
81 virtual void setCookieEnabled(bool) OVERRIDE; | 82 virtual void setCookieEnabled(bool) OVERRIDE; |
82 virtual void setCursiveFontFamily(const WebString&, UScriptCode = USCRIPT_CO
MMON) OVERRIDE; | 83 virtual void setCursiveFontFamily(const WebString&, UScriptCode = USCRIPT_CO
MMON) OVERRIDE; |
83 virtual void setDNSPrefetchingEnabled(bool) OVERRIDE; | 84 virtual void setDNSPrefetchingEnabled(bool) OVERRIDE; |
84 virtual void setDOMPasteAllowed(bool) OVERRIDE; | 85 virtual void setDOMPasteAllowed(bool) OVERRIDE; |
85 virtual void setDefaultFixedFontSize(int) OVERRIDE; | 86 virtual void setDefaultFixedFontSize(int) OVERRIDE; |
86 virtual void setDefaultFontSize(int) OVERRIDE; | 87 virtual void setDefaultFontSize(int) OVERRIDE; |
87 virtual void setDefaultTextEncodingName(const WebString&) OVERRIDE; | 88 virtual void setDefaultTextEncodingName(const WebString&) OVERRIDE; |
88 virtual void setDefaultVideoPosterURL(const WebString&) OVERRIDE; | 89 virtual void setDefaultVideoPosterURL(const WebString&) OVERRIDE; |
89 virtual void setDeferredFiltersEnabled(bool) OVERRIDE; | 90 virtual void setDeferredFiltersEnabled(bool) OVERRIDE; |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 // the Android SDK prior to and including version 18. Presumably, this | 222 // the Android SDK prior to and including version 18. Presumably, this |
222 // can be removed any time after 2015. See http://crbug.com/313754. | 223 // can be removed any time after 2015. See http://crbug.com/313754. |
223 bool m_clobberUserAgentInitialScaleQuirk; | 224 bool m_clobberUserAgentInitialScaleQuirk; |
224 int m_pinchOverlayScrollbarThickness; | 225 int m_pinchOverlayScrollbarThickness; |
225 bool m_mainFrameResizesAreOrientationChanges; | 226 bool m_mainFrameResizesAreOrientationChanges; |
226 }; | 227 }; |
227 | 228 |
228 } // namespace blink | 229 } // namespace blink |
229 | 230 |
230 #endif | 231 #endif |
OLD | NEW |