| 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 20 matching lines...) Expand all Loading... |
| 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 blink { | 38 namespace blink { |
| 39 | 39 |
| 40 class WebString; | 40 class WebString; |
| 41 class WebURL; | |
| 42 | 41 |
| 43 // WebSettings is owned by the WebView and allows code to modify the settings fo
r | 42 // 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, | 43 // 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. | 44 // these functions have a 1:1 mapping with the methods in WebCore/page/Settings.
h. |
| 46 class WebSettings { | 45 class WebSettings { |
| 47 public: | 46 public: |
| 48 enum ImageAnimationPolicy { | 47 enum ImageAnimationPolicy { |
| 49 ImageAnimationPolicyAllowed, | 48 ImageAnimationPolicyAllowed, |
| 50 ImageAnimationPolicyAnimateOnce, | 49 ImageAnimationPolicyAnimateOnce, |
| 51 ImageAnimationPolicyNoAnimation | 50 ImageAnimationPolicyNoAnimation |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 virtual void setWideViewportQuirkEnabled(bool) = 0; | 250 virtual void setWideViewportQuirkEnabled(bool) = 0; |
| 252 virtual void setXSSAuditorEnabled(bool) = 0; | 251 virtual void setXSSAuditorEnabled(bool) = 0; |
| 253 | 252 |
| 254 protected: | 253 protected: |
| 255 ~WebSettings() { } | 254 ~WebSettings() { } |
| 256 }; | 255 }; |
| 257 | 256 |
| 258 } // namespace blink | 257 } // namespace blink |
| 259 | 258 |
| 260 #endif | 259 #endif |
| OLD | NEW |