| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 virtual void setAllowCustomScrollbarInMainFrame(bool); | 68 virtual void setAllowCustomScrollbarInMainFrame(bool); |
| 69 virtual void setAllowRunningOfInsecureContent(bool); | 69 virtual void setAllowRunningOfInsecureContent(bool); |
| 70 virtual void setAllowScriptsToCloseWindows(bool); | 70 virtual void setAllowScriptsToCloseWindows(bool); |
| 71 virtual void setAllowUniversalAccessFromFileURLs(bool); | 71 virtual void setAllowUniversalAccessFromFileURLs(bool); |
| 72 virtual void setAntialiased2dCanvasEnabled(bool); | 72 virtual void setAntialiased2dCanvasEnabled(bool); |
| 73 virtual void setAsynchronousSpellCheckingEnabled(bool); | 73 virtual void setAsynchronousSpellCheckingEnabled(bool); |
| 74 virtual void setAuthorAndUserStylesEnabled(bool); | 74 virtual void setAuthorAndUserStylesEnabled(bool); |
| 75 virtual void setAutoZoomFocusedNodeToLegibleScale(bool); | 75 virtual void setAutoZoomFocusedNodeToLegibleScale(bool); |
| 76 virtual void setCaretBrowsingEnabled(bool); | 76 virtual void setCaretBrowsingEnabled(bool); |
| 77 virtual void setCompositedScrollingForFramesEnabled(bool); | 77 virtual void setCompositedScrollingForFramesEnabled(bool); |
| 78 virtual void setCompositorTouchHitTesting(bool); |
| 78 virtual void setCookieEnabled(bool); | 79 virtual void setCookieEnabled(bool); |
| 79 virtual void setCursiveFontFamily(const WebString&, UScriptCode = USCRIPT_CO
MMON); | 80 virtual void setCursiveFontFamily(const WebString&, UScriptCode = USCRIPT_CO
MMON); |
| 80 virtual void setDNSPrefetchingEnabled(bool); | 81 virtual void setDNSPrefetchingEnabled(bool); |
| 81 virtual void setDOMPasteAllowed(bool); | 82 virtual void setDOMPasteAllowed(bool); |
| 82 virtual void setDefaultFixedFontSize(int); | 83 virtual void setDefaultFixedFontSize(int); |
| 83 virtual void setDefaultFontSize(int); | 84 virtual void setDefaultFontSize(int); |
| 84 virtual void setDefaultTextEncodingName(const WebString&); | 85 virtual void setDefaultTextEncodingName(const WebString&); |
| 85 virtual void setDefaultVideoPosterURL(const WebString&); | 86 virtual void setDefaultVideoPosterURL(const WebString&); |
| 86 virtual void setDeferred2dCanvasEnabled(bool); | 87 virtual void setDeferred2dCanvasEnabled(bool); |
| 87 virtual void setDeferredImageDecodingEnabled(bool); | 88 virtual void setDeferredImageDecodingEnabled(bool); |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 // This quirk is to maintain compatibility with Android apps built on | 203 // This quirk is to maintain compatibility with Android apps built on |
| 203 // the Android SDK prior to and including version 18. Presumably, this | 204 // the Android SDK prior to and including version 18. Presumably, this |
| 204 // can be removed any time after 2015. See http://crbug.com/277369. | 205 // can be removed any time after 2015. See http://crbug.com/277369. |
| 205 bool m_viewportMetaLayoutSizeQuirk; | 206 bool m_viewportMetaLayoutSizeQuirk; |
| 206 int m_pinchOverlayScrollbarThickness; | 207 int m_pinchOverlayScrollbarThickness; |
| 207 }; | 208 }; |
| 208 | 209 |
| 209 } // namespace WebKit | 210 } // namespace WebKit |
| 210 | 211 |
| 211 #endif | 212 #endif |
| OLD | NEW |