Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(377)

Side by Side Diff: Source/web/WebViewImpl.h

Issue 1295053002: Move dispatchDidFirstVisuallyNonEmptyLayout into WebViewImpl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: simpler. Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/frame/FrameView.cpp ('k') | Source/web/WebViewImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 737 matching lines...) Expand 10 before | Expand all | Expand 10 after
748 OwnPtr<WebCompositorAnimationTimeline> m_linkHighlightsTimeline; 748 OwnPtr<WebCompositorAnimationTimeline> m_linkHighlightsTimeline;
749 OwnPtrWillBePersistent<FullscreenController> m_fullscreenController; 749 OwnPtrWillBePersistent<FullscreenController> m_fullscreenController;
750 750
751 bool m_showFPSCounter; 751 bool m_showFPSCounter;
752 bool m_continuousPaintingEnabled; 752 bool m_continuousPaintingEnabled;
753 WebColor m_baseBackgroundColor; 753 WebColor m_baseBackgroundColor;
754 WebColor m_backgroundColorOverride; 754 WebColor m_backgroundColorOverride;
755 float m_zoomFactorOverride; 755 float m_zoomFactorOverride;
756 756
757 bool m_userGestureObserved; 757 bool m_userGestureObserved;
758 bool m_shouldDispatchFirstVisuallyNonEmptyLayout;
758 WebDisplayMode m_displayMode; 759 WebDisplayMode m_displayMode;
759 760
760 FloatSize m_elasticOverscroll; 761 FloatSize m_elasticOverscroll;
761 762
762 RefPtrWillBePersistent<EventListener> m_popupMouseWheelEventListener; 763 RefPtrWillBePersistent<EventListener> m_popupMouseWheelEventListener;
763 }; 764 };
764 765
765 DEFINE_TYPE_CASTS(WebViewImpl, WebWidget, widget, widget->isWebView(), widget.is WebView()); 766 DEFINE_TYPE_CASTS(WebViewImpl, WebWidget, widget, widget->isWebView(), widget.is WebView());
766 // We have no ways to check if the specified WebView is an instance of 767 // We have no ways to check if the specified WebView is an instance of
767 // WebViewImpl because WebViewImpl is the only implementation of WebView. 768 // WebViewImpl because WebViewImpl is the only implementation of WebView.
768 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); 769 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true);
769 770
770 } // namespace blink 771 } // namespace blink
771 772
772 #endif 773 #endif
OLDNEW
« no previous file with comments | « Source/core/frame/FrameView.cpp ('k') | Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698