OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 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 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
743 OwnPtrWillBePersistent<FullscreenController> m_fullscreenController; | 743 OwnPtrWillBePersistent<FullscreenController> m_fullscreenController; |
744 | 744 |
745 bool m_showFPSCounter; | 745 bool m_showFPSCounter; |
746 WebColor m_baseBackgroundColor; | 746 WebColor m_baseBackgroundColor; |
747 WebColor m_backgroundColorOverride; | 747 WebColor m_backgroundColorOverride; |
748 float m_zoomFactorOverride; | 748 float m_zoomFactorOverride; |
749 | 749 |
750 bool m_userGestureObserved; | 750 bool m_userGestureObserved; |
751 bool m_shouldDispatchFirstVisuallyNonEmptyLayout; | 751 bool m_shouldDispatchFirstVisuallyNonEmptyLayout; |
752 bool m_shouldDispatchFirstLayoutAfterFinishedParsing; | 752 bool m_shouldDispatchFirstLayoutAfterFinishedParsing; |
| 753 bool m_shouldDispatchFirstPaintAfterLoad; |
753 WebDisplayMode m_displayMode; | 754 WebDisplayMode m_displayMode; |
754 | 755 |
755 FloatSize m_elasticOverscroll; | 756 FloatSize m_elasticOverscroll; |
756 | 757 |
757 RefPtrWillBePersistent<EventListener> m_popupMouseWheelEventListener; | 758 RefPtrWillBePersistent<EventListener> m_popupMouseWheelEventListener; |
758 | 759 |
759 WebPageImportanceSignals m_pageImportanceSignals; | 760 WebPageImportanceSignals m_pageImportanceSignals; |
760 }; | 761 }; |
761 | 762 |
762 DEFINE_TYPE_CASTS(WebViewImpl, WebWidget, widget, widget->isWebView(), widget.is
WebView()); | 763 DEFINE_TYPE_CASTS(WebViewImpl, WebWidget, widget, widget->isWebView(), widget.is
WebView()); |
763 // We have no ways to check if the specified WebView is an instance of | 764 // We have no ways to check if the specified WebView is an instance of |
764 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 765 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
765 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 766 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
766 | 767 |
767 } // namespace blink | 768 } // namespace blink |
768 | 769 |
769 #endif | 770 #endif |
OLD | NEW |