| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 bool m_originalCSSExclusionsEnabled; | 53 bool m_originalCSSExclusionsEnabled; |
| 54 bool m_originalCSSVariablesEnabled; | 54 bool m_originalCSSVariablesEnabled; |
| 55 #if ENABLE(SHADOW_DOM) | 55 #if ENABLE(SHADOW_DOM) |
| 56 bool m_originalShadowDOMEnabled; | 56 bool m_originalShadowDOMEnabled; |
| 57 bool m_originalAuthorShadowDOMForAnyElementEnabled; | 57 bool m_originalAuthorShadowDOMForAnyElementEnabled; |
| 58 #endif | 58 #endif |
| 59 #if ENABLE(STYLE_SCOPED) | 59 #if ENABLE(STYLE_SCOPED) |
| 60 bool m_originalStyleScoped; | 60 bool m_originalStyleScoped; |
| 61 #endif | 61 #endif |
| 62 EditingBehaviorType m_originalEditingBehavior; | 62 EditingBehaviorType m_originalEditingBehavior; |
| 63 #if ENABLE(TEXT_AUTOSIZING) | |
| 64 bool m_originalTextAutosizingEnabled; | 63 bool m_originalTextAutosizingEnabled; |
| 65 IntSize m_originalTextAutosizingWindowSizeOverride; | 64 IntSize m_originalTextAutosizingWindowSizeOverride; |
| 66 float m_originalTextAutosizingFontScaleFactor; | 65 float m_originalTextAutosizingFontScaleFactor; |
| 67 #endif | |
| 68 IntSize m_originalResolutionOverride; | 66 IntSize m_originalResolutionOverride; |
| 69 String m_originalMediaTypeOverride; | 67 String m_originalMediaTypeOverride; |
| 70 #if ENABLE(DIALOG_ELEMENT) | 68 #if ENABLE(DIALOG_ELEMENT) |
| 71 bool m_originalDialogElementEnabled; | 69 bool m_originalDialogElementEnabled; |
| 72 #endif | 70 #endif |
| 73 bool m_originalMockScrollbarsEnabled; | 71 bool m_originalMockScrollbarsEnabled; |
| 74 bool m_originalUsesOverlayScrollbars; | 72 bool m_originalUsesOverlayScrollbars; |
| 75 bool m_langAttributeAwareFormControlUIEnabled; | 73 bool m_langAttributeAwareFormControlUIEnabled; |
| 76 bool m_imagesEnabled; | 74 bool m_imagesEnabled; |
| 77 double m_minimumTimerInterval; | 75 double m_minimumTimerInterval; |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 Page* page() const { return m_page; } | 134 Page* page() const { return m_page; } |
| 137 static const char* supplementName(); | 135 static const char* supplementName(); |
| 138 | 136 |
| 139 Page* m_page; | 137 Page* m_page; |
| 140 Backup m_backup; | 138 Backup m_backup; |
| 141 }; | 139 }; |
| 142 | 140 |
| 143 } // namespace WebCore | 141 } // namespace WebCore |
| 144 | 142 |
| 145 #endif | 143 #endif |
| OLD | NEW |