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

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

Issue 1309883003: Add hooks for capturing meaningful text info, gently. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Oopsie fixed. 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
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 743 matching lines...) Expand 10 before | Expand all | Expand 10 after
754 OwnPtr<WebCompositorAnimationTimeline> m_linkHighlightsTimeline; 754 OwnPtr<WebCompositorAnimationTimeline> m_linkHighlightsTimeline;
755 OwnPtrWillBePersistent<FullscreenController> m_fullscreenController; 755 OwnPtrWillBePersistent<FullscreenController> m_fullscreenController;
756 756
757 bool m_showFPSCounter; 757 bool m_showFPSCounter;
758 WebColor m_baseBackgroundColor; 758 WebColor m_baseBackgroundColor;
759 WebColor m_backgroundColorOverride; 759 WebColor m_backgroundColorOverride;
760 float m_zoomFactorOverride; 760 float m_zoomFactorOverride;
761 761
762 bool m_userGestureObserved; 762 bool m_userGestureObserved;
763 bool m_shouldDispatchFirstVisuallyNonEmptyLayout; 763 bool m_shouldDispatchFirstVisuallyNonEmptyLayout;
764 bool m_shouldDispatchFirstLayoutAfterFinishedParsing;
764 WebDisplayMode m_displayMode; 765 WebDisplayMode m_displayMode;
765 766
766 FloatSize m_elasticOverscroll; 767 FloatSize m_elasticOverscroll;
767 768
768 RefPtrWillBePersistent<EventListener> m_popupMouseWheelEventListener; 769 RefPtrWillBePersistent<EventListener> m_popupMouseWheelEventListener;
769 770
770 WebPageImportanceSignals m_pageImportanceSignals; 771 WebPageImportanceSignals m_pageImportanceSignals;
771 }; 772 };
772 773
773 DEFINE_TYPE_CASTS(WebViewImpl, WebWidget, widget, widget->isWebView(), widget.is WebView()); 774 DEFINE_TYPE_CASTS(WebViewImpl, WebWidget, widget, widget->isWebView(), widget.is WebView());
774 // We have no ways to check if the specified WebView is an instance of 775 // We have no ways to check if the specified WebView is an instance of
775 // WebViewImpl because WebViewImpl is the only implementation of WebView. 776 // WebViewImpl because WebViewImpl is the only implementation of WebView.
776 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); 777 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true);
777 778
778 } // namespace blink 779 } // namespace blink
779 780
780 #endif 781 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698