| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2013 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 bool m_originalTextAutosizingEnabled; | 63 bool m_originalTextAutosizingEnabled; |
| 64 IntSize m_originalTextAutosizingWindowSizeOverride; | 64 IntSize m_originalTextAutosizingWindowSizeOverride; |
| 65 float m_originalAccessibilityFontScaleFactor; | 65 float m_originalAccessibilityFontScaleFactor; |
| 66 String m_originalMediaTypeOverride; | 66 String m_originalMediaTypeOverride; |
| 67 WebDisplayMode m_originalDisplayModeOverride; | 67 WebDisplayMode m_originalDisplayModeOverride; |
| 68 bool m_originalMockScrollbarsEnabled; | 68 bool m_originalMockScrollbarsEnabled; |
| 69 bool m_originalMockGestureTapHighlightsEnabled; | 69 bool m_originalMockGestureTapHighlightsEnabled; |
| 70 bool m_langAttributeAwareFormControlUIEnabled; | 70 bool m_langAttributeAwareFormControlUIEnabled; |
| 71 bool m_imagesEnabled; | 71 bool m_imagesEnabled; |
| 72 String m_defaultVideoPosterURL; | 72 String m_defaultVideoPosterURL; |
| 73 bool m_originalLayerSquashingEnabled; | |
| 74 ImageAnimationPolicy m_originalImageAnimationPolicy; | 73 ImageAnimationPolicy m_originalImageAnimationPolicy; |
| 75 bool m_originalScrollTopLeftInteropEnabled; | 74 bool m_originalScrollTopLeftInteropEnabled; |
| 76 bool m_originalCompositorWorkerEnabled; | 75 bool m_originalCompositorWorkerEnabled; |
| 77 }; | 76 }; |
| 78 | 77 |
| 79 static InternalSettings* create(Page& page) { | 78 static InternalSettings* create(Page& page) { |
| 80 return new InternalSettings(page); | 79 return new InternalSettings(page); |
| 81 } | 80 } |
| 82 static InternalSettings* from(Page&); | 81 static InternalSettings* from(Page&); |
| 83 | 82 |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 Settings* settings() const; | 151 Settings* settings() const; |
| 153 Page* page() const { return supplementable(); } | 152 Page* page() const { return supplementable(); } |
| 154 static const char* supplementName(); | 153 static const char* supplementName(); |
| 155 | 154 |
| 156 Backup m_backup; | 155 Backup m_backup; |
| 157 }; | 156 }; |
| 158 | 157 |
| 159 } // namespace blink | 158 } // namespace blink |
| 160 | 159 |
| 161 #endif // InternalSettings_h | 160 #endif // InternalSettings_h |
| OLD | NEW |