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