| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 bool m_originalShadowDOMEnabled; | 55 bool m_originalShadowDOMEnabled; |
| 56 bool m_originalAuthorShadowDOMForAnyElementEnabled; | 56 bool m_originalAuthorShadowDOMForAnyElementEnabled; |
| 57 bool m_originalExperimentalShadowDOMEnabled; | 57 bool m_originalExperimentalShadowDOMEnabled; |
| 58 bool m_originalStyleScoped; | 58 bool m_originalStyleScoped; |
| 59 EditingBehaviorType m_originalEditingBehavior; | 59 EditingBehaviorType m_originalEditingBehavior; |
| 60 bool m_originalTextAutosizingEnabled; | 60 bool m_originalTextAutosizingEnabled; |
| 61 IntSize m_originalTextAutosizingWindowSizeOverride; | 61 IntSize m_originalTextAutosizingWindowSizeOverride; |
| 62 float m_originalTextAutosizingFontScaleFactor; | 62 float m_originalTextAutosizingFontScaleFactor; |
| 63 IntSize m_originalResolutionOverride; | 63 IntSize m_originalResolutionOverride; |
| 64 String m_originalMediaTypeOverride; | 64 String m_originalMediaTypeOverride; |
| 65 #if ENABLE(DIALOG_ELEMENT) | |
| 66 bool m_originalDialogElementEnabled; | 65 bool m_originalDialogElementEnabled; |
| 67 #endif | |
| 68 bool m_originalLazyLayoutEnabled; | 66 bool m_originalLazyLayoutEnabled; |
| 69 bool m_originalMockScrollbarsEnabled; | 67 bool m_originalMockScrollbarsEnabled; |
| 70 bool m_originalUsesOverlayScrollbars; | 68 bool m_originalUsesOverlayScrollbars; |
| 71 bool m_langAttributeAwareFormControlUIEnabled; | 69 bool m_langAttributeAwareFormControlUIEnabled; |
| 72 bool m_imagesEnabled; | 70 bool m_imagesEnabled; |
| 73 bool m_shouldDisplaySubtitles; | 71 bool m_shouldDisplaySubtitles; |
| 74 bool m_shouldDisplayCaptions; | 72 bool m_shouldDisplayCaptions; |
| 75 bool m_shouldDisplayTextDescriptions; | 73 bool m_shouldDisplayTextDescriptions; |
| 76 String m_defaultVideoPosterURL; | 74 String m_defaultVideoPosterURL; |
| 77 }; | 75 }; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 Page* page() const { return m_page; } | 123 Page* page() const { return m_page; } |
| 126 static const char* supplementName(); | 124 static const char* supplementName(); |
| 127 | 125 |
| 128 Page* m_page; | 126 Page* m_page; |
| 129 Backup m_backup; | 127 Backup m_backup; |
| 130 }; | 128 }; |
| 131 | 129 |
| 132 } // namespace WebCore | 130 } // namespace WebCore |
| 133 | 131 |
| 134 #endif | 132 #endif |
| OLD | NEW |