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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 virtual void setAllowRunningOfInsecureContent(bool) OVERRIDE; | 67 virtual void setAllowRunningOfInsecureContent(bool) OVERRIDE; |
68 virtual void setAllowConnectingInsecureWebSocket(bool) OVERRIDE; | 68 virtual void setAllowConnectingInsecureWebSocket(bool) OVERRIDE; |
69 virtual void setAllowScriptsToCloseWindows(bool) OVERRIDE; | 69 virtual void setAllowScriptsToCloseWindows(bool) OVERRIDE; |
70 virtual void setAllowUniversalAccessFromFileURLs(bool) OVERRIDE; | 70 virtual void setAllowUniversalAccessFromFileURLs(bool) OVERRIDE; |
71 virtual void setAntialiased2dCanvasEnabled(bool) OVERRIDE; | 71 virtual void setAntialiased2dCanvasEnabled(bool) OVERRIDE; |
72 virtual void setAsynchronousSpellCheckingEnabled(bool) OVERRIDE; | 72 virtual void setAsynchronousSpellCheckingEnabled(bool) OVERRIDE; |
73 virtual void setAutoZoomFocusedNodeToLegibleScale(bool) OVERRIDE; | 73 virtual void setAutoZoomFocusedNodeToLegibleScale(bool) OVERRIDE; |
74 virtual void setCaretBrowsingEnabled(bool) OVERRIDE; | 74 virtual void setCaretBrowsingEnabled(bool) OVERRIDE; |
75 virtual void setClobberUserAgentInitialScaleQuirk(bool) OVERRIDE; | 75 virtual void setClobberUserAgentInitialScaleQuirk(bool) OVERRIDE; |
76 virtual void setCompositedScrollingForFramesEnabled(bool) OVERRIDE; | 76 virtual void setCompositedScrollingForFramesEnabled(bool) OVERRIDE; |
77 virtual void setCompositorTouchHitTesting(bool) OVERRIDE; | |
78 virtual void setContainerCullingEnabled(bool) OVERRIDE; | 77 virtual void setContainerCullingEnabled(bool) OVERRIDE; |
79 virtual void setCookieEnabled(bool) OVERRIDE; | 78 virtual void setCookieEnabled(bool) OVERRIDE; |
80 virtual void setNavigateOnDragDrop(bool) OVERRIDE; | 79 virtual void setNavigateOnDragDrop(bool) OVERRIDE; |
81 virtual void setCursiveFontFamily(const WebString&, UScriptCode = USCRIPT_CO
MMON) OVERRIDE; | 80 virtual void setCursiveFontFamily(const WebString&, UScriptCode = USCRIPT_CO
MMON) OVERRIDE; |
82 virtual void setDNSPrefetchingEnabled(bool) OVERRIDE; | 81 virtual void setDNSPrefetchingEnabled(bool) OVERRIDE; |
83 virtual void setDOMPasteAllowed(bool) OVERRIDE; | 82 virtual void setDOMPasteAllowed(bool) OVERRIDE; |
84 virtual void setDefaultFixedFontSize(int) OVERRIDE; | 83 virtual void setDefaultFixedFontSize(int) OVERRIDE; |
85 virtual void setDefaultFontSize(int) OVERRIDE; | 84 virtual void setDefaultFontSize(int) OVERRIDE; |
86 virtual void setDefaultTextEncodingName(const WebString&) OVERRIDE; | 85 virtual void setDefaultTextEncodingName(const WebString&) OVERRIDE; |
87 virtual void setDefaultVideoPosterURL(const WebString&) OVERRIDE; | 86 virtual void setDefaultVideoPosterURL(const WebString&) OVERRIDE; |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 // the Android SDK prior to and including version 18. Presumably, this | 211 // the Android SDK prior to and including version 18. Presumably, this |
213 // can be removed any time after 2015. See http://crbug.com/313754. | 212 // can be removed any time after 2015. See http://crbug.com/313754. |
214 bool m_clobberUserAgentInitialScaleQuirk; | 213 bool m_clobberUserAgentInitialScaleQuirk; |
215 bool m_mainFrameResizesAreOrientationChanges; | 214 bool m_mainFrameResizesAreOrientationChanges; |
216 bool m_disallowFullscreenForNonMediaElements; | 215 bool m_disallowFullscreenForNonMediaElements; |
217 }; | 216 }; |
218 | 217 |
219 } // namespace blink | 218 } // namespace blink |
220 | 219 |
221 #endif | 220 #endif |
OLD | NEW |