| 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 21 matching lines...) Expand all Loading... |
| 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 | 41 |
| 42 // Temporary #if guard for a multi-CL change across blink + Chrome. | |
| 43 // See crrev.com/1192323002 for details. | |
| 44 #define CLEANUP_V8_CACHE_OPTIONS_GUARD | |
| 45 | |
| 46 // 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 |
| 47 // 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, |
| 48 // 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. |
| 49 class WebSettings { | 45 class WebSettings { |
| 50 public: | 46 public: |
| 51 enum ImageAnimationPolicy { | 47 enum ImageAnimationPolicy { |
| 52 ImageAnimationPolicyAllowed, | 48 ImageAnimationPolicyAllowed, |
| 53 ImageAnimationPolicyAnimateOnce, | 49 ImageAnimationPolicyAnimateOnce, |
| 54 ImageAnimationPolicyNoAnimation | 50 ImageAnimationPolicyNoAnimation |
| 55 }; | 51 }; |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 virtual void setWideViewportQuirkEnabled(bool) = 0; | 262 virtual void setWideViewportQuirkEnabled(bool) = 0; |
| 267 virtual void setXSSAuditorEnabled(bool) = 0; | 263 virtual void setXSSAuditorEnabled(bool) = 0; |
| 268 | 264 |
| 269 protected: | 265 protected: |
| 270 ~WebSettings() { } | 266 ~WebSettings() { } |
| 271 }; | 267 }; |
| 272 | 268 |
| 273 } // namespace blink | 269 } // namespace blink |
| 274 | 270 |
| 275 #endif | 271 #endif |
| OLD | NEW |