| 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 17 matching lines...) Expand all Loading... |
| 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 "../platform/WebCommon.h" | 34 #include "../platform/WebCommon.h" |
| 35 #include "../platform/WebSize.h" | 35 #include "../platform/WebSize.h" |
| 36 #include <unicode/uscript.h> | 36 #include <unicode/uscript.h> |
| 37 | 37 |
| 38 namespace WebKit { | 38 namespace blink { |
| 39 | 39 |
| 40 class WebString; | 40 class WebString; |
| 41 class WebURL; | 41 class WebURL; |
| 42 | 42 |
| 43 // WebSettings is owned by the WebView and allows code to modify the settings fo
r | 43 // WebSettings is owned by the WebView and allows code to modify the settings fo
r |
| 44 // the WebView's page without any knowledge of WebCore itself. For the most par
t, | 44 // the WebView's page without any knowledge of WebCore itself. For the most par
t, |
| 45 // these functions have a 1:1 mapping with the methods in WebCore/page/Settings.
h. | 45 // these functions have a 1:1 mapping with the methods in WebCore/page/Settings.
h. |
| 46 class WebSettings { | 46 class WebSettings { |
| 47 public: | 47 public: |
| 48 enum EditingBehavior { | 48 enum EditingBehavior { |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 virtual void setWebAudioEnabled(bool) = 0; | 195 virtual void setWebAudioEnabled(bool) = 0; |
| 196 virtual void setWebGLErrorsToConsoleEnabled(bool) = 0; | 196 virtual void setWebGLErrorsToConsoleEnabled(bool) = 0; |
| 197 virtual void setWebSecurityEnabled(bool) = 0; | 197 virtual void setWebSecurityEnabled(bool) = 0; |
| 198 virtual void setWideViewportQuirkEnabled(bool) = 0; | 198 virtual void setWideViewportQuirkEnabled(bool) = 0; |
| 199 virtual void setXSSAuditorEnabled(bool) = 0; | 199 virtual void setXSSAuditorEnabled(bool) = 0; |
| 200 | 200 |
| 201 protected: | 201 protected: |
| 202 ~WebSettings() { } | 202 ~WebSettings() { } |
| 203 }; | 203 }; |
| 204 | 204 |
| 205 } // namespace WebKit | 205 } // namespace blink |
| 206 | 206 |
| 207 #endif | 207 #endif |
| OLD | NEW |