| 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 13 matching lines...) Expand all Loading... |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef WebSettings_h | 31 #ifndef WebSettings_h |
| 32 #define WebSettings_h | 32 #define WebSettings_h |
| 33 | 33 |
| 34 #include <unicode/uscript.h> |
| 34 #include "../platform/PointerProperties.h" | 35 #include "../platform/PointerProperties.h" |
| 35 #include "../platform/WebCommon.h" | 36 #include "../platform/WebCommon.h" |
| 36 #include "../platform/WebSize.h" | 37 #include "../platform/WebSize.h" |
| 37 #include "../platform/WebViewportStyle.h" | 38 #include "../platform/WebViewportStyle.h" |
| 38 #include <unicode/uscript.h> | 39 #include "WebDataSaverFlag.h" |
| 39 | 40 |
| 40 namespace blink { | 41 namespace blink { |
| 41 | 42 |
| 42 class WebString; | 43 class WebString; |
| 43 | 44 |
| 44 // WebSettings is owned by the WebView and allows code to modify the settings | 45 // WebSettings is owned by the WebView and allows code to modify the settings |
| 45 // for the WebView's page without any knowledge of WebCore itself. For the most | 46 // for the WebView's page without any knowledge of WebCore itself. For the most |
| 46 // part, these functions have a 1:1 mapping with the methods in | 47 // part, these functions have a 1:1 mapping with the methods in |
| 47 // WebCore/page/Settings.h. | 48 // WebCore/page/Settings.h. |
| 48 class WebSettings { | 49 class WebSettings { |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 virtual void SetAntialiasedClips2dCanvasEnabled(bool) = 0; | 156 virtual void SetAntialiasedClips2dCanvasEnabled(bool) = 0; |
| 156 virtual void SetAutoplayPolicy(AutoplayPolicy) = 0; | 157 virtual void SetAutoplayPolicy(AutoplayPolicy) = 0; |
| 157 virtual void SetAutoZoomFocusedNodeToLegibleScale(bool) = 0; | 158 virtual void SetAutoZoomFocusedNodeToLegibleScale(bool) = 0; |
| 158 virtual void SetBrowserSideNavigationEnabled(bool) = 0; | 159 virtual void SetBrowserSideNavigationEnabled(bool) = 0; |
| 159 virtual void SetClobberUserAgentInitialScaleQuirk(bool) = 0; | 160 virtual void SetClobberUserAgentInitialScaleQuirk(bool) = 0; |
| 160 virtual void SetCookieEnabled(bool) = 0; | 161 virtual void SetCookieEnabled(bool) = 0; |
| 161 virtual void SetNavigateOnDragDrop(bool) = 0; | 162 virtual void SetNavigateOnDragDrop(bool) = 0; |
| 162 virtual void SetCursiveFontFamily(const WebString&, | 163 virtual void SetCursiveFontFamily(const WebString&, |
| 163 UScriptCode = USCRIPT_COMMON) = 0; | 164 UScriptCode = USCRIPT_COMMON) = 0; |
| 164 virtual void SetDNSPrefetchingEnabled(bool) = 0; | 165 virtual void SetDNSPrefetchingEnabled(bool) = 0; |
| 165 virtual void SetDataSaverEnabled(bool) = 0; | 166 virtual void SetDataSaverFlag(WebDataSaverFlag) = 0; |
| 166 virtual void SetDOMPasteAllowed(bool) = 0; | 167 virtual void SetDOMPasteAllowed(bool) = 0; |
| 167 virtual void SetDefaultFixedFontSize(int) = 0; | 168 virtual void SetDefaultFixedFontSize(int) = 0; |
| 168 virtual void SetDefaultFontSize(int) = 0; | 169 virtual void SetDefaultFontSize(int) = 0; |
| 169 virtual void SetDefaultTextEncodingName(const WebString&) = 0; | 170 virtual void SetDefaultTextEncodingName(const WebString&) = 0; |
| 170 virtual void SetDefaultVideoPosterURL(const WebString&) = 0; | 171 virtual void SetDefaultVideoPosterURL(const WebString&) = 0; |
| 171 void SetDeferred2dCanvasEnabled(bool) {} // temporary stub | 172 void SetDeferred2dCanvasEnabled(bool) {} // temporary stub |
| 172 virtual void SetDeviceScaleAdjustment(float) = 0; | 173 virtual void SetDeviceScaleAdjustment(float) = 0; |
| 173 virtual void SetDisableReadingFromCanvas(bool) = 0; | 174 virtual void SetDisableReadingFromCanvas(bool) = 0; |
| 174 virtual void SetDoubleTapToZoomEnabled(bool) = 0; | 175 virtual void SetDoubleTapToZoomEnabled(bool) = 0; |
| 175 virtual void SetDownloadableBinaryFontsEnabled(bool) = 0; | 176 virtual void SetDownloadableBinaryFontsEnabled(bool) = 0; |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 virtual void SetMediaControlsEnabled(bool) = 0; | 305 virtual void SetMediaControlsEnabled(bool) = 0; |
| 305 virtual void SetDoNotUpdateSelectionOnMutatingSelectionRange(bool) = 0; | 306 virtual void SetDoNotUpdateSelectionOnMutatingSelectionRange(bool) = 0; |
| 306 | 307 |
| 307 protected: | 308 protected: |
| 308 ~WebSettings() {} | 309 ~WebSettings() {} |
| 309 }; | 310 }; |
| 310 | 311 |
| 311 } // namespace blink | 312 } // namespace blink |
| 312 | 313 |
| 313 #endif | 314 #endif |
| OLD | NEW |