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

Side by Side Diff: Source/WebKit/chromium/src/WebViewImpl.h

Issue 13959008: Remove NonCompositedContentHost (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: one more Created 7 years, 7 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 87
88 namespace WebKit { 88 namespace WebKit {
89 class AutocompletePopupMenuClient; 89 class AutocompletePopupMenuClient;
90 class AutofillPopupMenuClient; 90 class AutofillPopupMenuClient;
91 class BatteryClientImpl; 91 class BatteryClientImpl;
92 class ContextFeaturesClientImpl; 92 class ContextFeaturesClientImpl;
93 class ContextMenuClientImpl; 93 class ContextMenuClientImpl;
94 class DeviceOrientationClientProxy; 94 class DeviceOrientationClientProxy;
95 class GeolocationClientProxy; 95 class GeolocationClientProxy;
96 class LinkHighlight; 96 class LinkHighlight;
97 class NonCompositedContentHost;
98 class PrerendererClientImpl; 97 class PrerendererClientImpl;
99 class SpeechInputClientImpl; 98 class SpeechInputClientImpl;
100 class SpeechRecognitionClientProxy; 99 class SpeechRecognitionClientProxy;
101 class UserMediaClientImpl; 100 class UserMediaClientImpl;
102 class ValidationMessageClientImpl; 101 class ValidationMessageClientImpl;
103 class WebAccessibilityObject; 102 class WebAccessibilityObject;
104 class WebActiveGestureAnimation; 103 class WebActiveGestureAnimation;
105 class WebCompositorImpl; 104 class WebCompositorImpl;
106 class WebDevToolsAgentClient; 105 class WebDevToolsAgentClient;
107 class WebDevToolsAgentPrivate; 106 class WebDevToolsAgentPrivate;
(...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after
516 static const WebInputEvent* currentInputEvent() 515 static const WebInputEvent* currentInputEvent()
517 { 516 {
518 return m_currentInputEvent; 517 return m_currentInputEvent;
519 } 518 }
520 519
521 WebCore::GraphicsLayer* rootGraphicsLayer(); 520 WebCore::GraphicsLayer* rootGraphicsLayer();
522 bool allowsAcceleratedCompositing(); 521 bool allowsAcceleratedCompositing();
523 void setRootGraphicsLayer(WebCore::GraphicsLayer*); 522 void setRootGraphicsLayer(WebCore::GraphicsLayer*);
524 void scheduleCompositingLayerSync(); 523 void scheduleCompositingLayerSync();
525 void scrollRootLayerRect(const WebCore::IntSize& scrollDelta, const WebCore: :IntRect& clipRect); 524 void scrollRootLayerRect(const WebCore::IntSize& scrollDelta, const WebCore: :IntRect& clipRect);
526 void paintRootLayer(WebCore::GraphicsContext&, const WebCore::IntRect& conte ntRect);
527 NonCompositedContentHost* nonCompositedContentHost();
528 void setBackgroundColor(const WebCore::Color&);
529 WebCore::GraphicsLayerFactory* graphicsLayerFactory() const; 525 WebCore::GraphicsLayerFactory* graphicsLayerFactory() const;
530 void registerForAnimations(WebLayer*); 526 void registerForAnimations(WebLayer*);
531 void scheduleAnimation(); 527 void scheduleAnimation();
532 528
533 void didProgrammaticallyScroll(const WebCore::IntPoint& scrollPoint); 529 void didProgrammaticallyScroll(const WebCore::IntPoint& scrollPoint);
534 530
535 virtual void setVisibilityState(WebPageVisibilityState, bool); 531 virtual void setVisibilityState(WebPageVisibilityState, bool);
536 532
537 WebCore::PopupContainer* selectPopup() const { return m_selectPopup.get(); } 533 WebCore::PopupContainer* selectPopup() const { return m_selectPopup.get(); }
538 bool hasOpenedPopup() const { return m_selectPopup || m_pagePopup; } 534 bool hasOpenedPopup() const { return m_selectPopup || m_pagePopup; }
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
813 // If set, the WebView is transitioning to fullscreen for this element. 809 // If set, the WebView is transitioning to fullscreen for this element.
814 RefPtr<WebCore::Element> m_provisionalFullScreenElement; 810 RefPtr<WebCore::Element> m_provisionalFullScreenElement;
815 811
816 // If set, the WebView is in fullscreen mode for an element in this frame. 812 // If set, the WebView is in fullscreen mode for an element in this frame.
817 RefPtr<WebCore::Frame> m_fullScreenFrame; 813 RefPtr<WebCore::Frame> m_fullScreenFrame;
818 bool m_isCancelingFullScreen; 814 bool m_isCancelingFullScreen;
819 815
820 WebViewBenchmarkSupportImpl m_benchmarkSupport; 816 WebViewBenchmarkSupportImpl m_benchmarkSupport;
821 817
822 WebCore::IntRect m_rootLayerScrollDamage; 818 WebCore::IntRect m_rootLayerScrollDamage;
823 OwnPtr<NonCompositedContentHost> m_nonCompositedContentHost;
824 WebLayerTreeView* m_layerTreeView; 819 WebLayerTreeView* m_layerTreeView;
825 WebLayer* m_rootLayer; 820 WebLayer* m_rootLayer;
826 WebCore::GraphicsLayer* m_rootGraphicsLayer; 821 WebCore::GraphicsLayer* m_rootGraphicsLayer;
827 OwnPtr<WebCore::GraphicsLayerFactory> m_graphicsLayerFactory; 822 OwnPtr<WebCore::GraphicsLayerFactory> m_graphicsLayerFactory;
828 bool m_isAcceleratedCompositingActive; 823 bool m_isAcceleratedCompositingActive;
829 bool m_layerTreeViewCommitsDeferred; 824 bool m_layerTreeViewCommitsDeferred;
830 bool m_compositorCreationFailed; 825 bool m_compositorCreationFailed;
831 // If true, the graphics context is being restored. 826 // If true, the graphics context is being restored.
832 bool m_recreatingGraphicsContext; 827 bool m_recreatingGraphicsContext;
833 int m_inputHandlerIdentifier; 828 int m_inputHandlerIdentifier;
(...skipping 26 matching lines...) Expand all
860 855
861 bool m_showFPSCounter; 856 bool m_showFPSCounter;
862 bool m_showPaintRects; 857 bool m_showPaintRects;
863 bool m_showDebugBorders; 858 bool m_showDebugBorders;
864 bool m_continuousPaintingEnabled; 859 bool m_continuousPaintingEnabled;
865 }; 860 };
866 861
867 } // namespace WebKit 862 } // namespace WebKit
868 863
869 #endif 864 #endif
OLDNEW
« no previous file with comments | « Source/WebKit/chromium/src/NonCompositedContentHost.cpp ('k') | Source/WebKit/chromium/src/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698