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

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: Adding back LCD text workaround Created 7 years, 8 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 86
87 namespace WebKit { 87 namespace WebKit {
88 class AutocompletePopupMenuClient; 88 class AutocompletePopupMenuClient;
89 class AutofillPopupMenuClient; 89 class AutofillPopupMenuClient;
90 class BatteryClientImpl; 90 class BatteryClientImpl;
91 class ContextFeaturesClientImpl; 91 class ContextFeaturesClientImpl;
92 class ContextMenuClientImpl; 92 class ContextMenuClientImpl;
93 class DeviceOrientationClientProxy; 93 class DeviceOrientationClientProxy;
94 class GeolocationClientProxy; 94 class GeolocationClientProxy;
95 class LinkHighlight; 95 class LinkHighlight;
96 class NonCompositedContentHost;
97 class PrerendererClientImpl; 96 class PrerendererClientImpl;
98 class SpeechInputClientImpl; 97 class SpeechInputClientImpl;
99 class SpeechRecognitionClientProxy; 98 class SpeechRecognitionClientProxy;
100 class UserMediaClientImpl; 99 class UserMediaClientImpl;
101 class ValidationMessageClientImpl; 100 class ValidationMessageClientImpl;
102 class WebAccessibilityObject; 101 class WebAccessibilityObject;
103 class WebActiveGestureAnimation; 102 class WebActiveGestureAnimation;
104 class WebCompositorImpl; 103 class WebCompositorImpl;
105 class WebDevToolsAgentClient; 104 class WebDevToolsAgentClient;
106 class WebDevToolsAgentPrivate; 105 class WebDevToolsAgentPrivate;
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
517 static const WebInputEvent* currentInputEvent() 516 static const WebInputEvent* currentInputEvent()
518 { 517 {
519 return m_currentInputEvent; 518 return m_currentInputEvent;
520 } 519 }
521 520
522 WebCore::GraphicsLayer* rootGraphicsLayer(); 521 WebCore::GraphicsLayer* rootGraphicsLayer();
523 bool allowsAcceleratedCompositing(); 522 bool allowsAcceleratedCompositing();
524 void setRootGraphicsLayer(WebCore::GraphicsLayer*); 523 void setRootGraphicsLayer(WebCore::GraphicsLayer*);
525 void scheduleCompositingLayerSync(); 524 void scheduleCompositingLayerSync();
526 void scrollRootLayerRect(const WebCore::IntSize& scrollDelta, const WebCore: :IntRect& clipRect); 525 void scrollRootLayerRect(const WebCore::IntSize& scrollDelta, const WebCore: :IntRect& clipRect);
527 void paintRootLayer(WebCore::GraphicsContext&, const WebCore::IntRect& conte ntRect);
528 NonCompositedContentHost* nonCompositedContentHost();
529 void setBackgroundColor(const WebCore::Color&); 526 void setBackgroundColor(const WebCore::Color&);
530 WebCore::GraphicsLayerFactory* graphicsLayerFactory() const; 527 WebCore::GraphicsLayerFactory* graphicsLayerFactory() const;
531 void registerForAnimations(WebLayer*); 528 void registerForAnimations(WebLayer*);
532 void scheduleAnimation(); 529 void scheduleAnimation();
533 530
534 void didProgrammaticallyScroll(const WebCore::IntPoint& scrollPoint); 531 void didProgrammaticallyScroll(const WebCore::IntPoint& scrollPoint);
535 532
536 virtual void setVisibilityState(WebPageVisibilityState, bool); 533 virtual void setVisibilityState(WebPageVisibilityState, bool);
537 534
538 WebCore::PopupContainer* selectPopup() const { return m_selectPopup.get(); } 535 WebCore::PopupContainer* selectPopup() const { return m_selectPopup.get(); }
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
819 // If set, the WebView is transitioning to fullscreen for this element. 816 // If set, the WebView is transitioning to fullscreen for this element.
820 RefPtr<WebCore::Element> m_provisionalFullScreenElement; 817 RefPtr<WebCore::Element> m_provisionalFullScreenElement;
821 818
822 // If set, the WebView is in fullscreen mode for an element in this frame. 819 // If set, the WebView is in fullscreen mode for an element in this frame.
823 RefPtr<WebCore::Frame> m_fullScreenFrame; 820 RefPtr<WebCore::Frame> m_fullScreenFrame;
824 bool m_isCancelingFullScreen; 821 bool m_isCancelingFullScreen;
825 822
826 WebViewBenchmarkSupportImpl m_benchmarkSupport; 823 WebViewBenchmarkSupportImpl m_benchmarkSupport;
827 824
828 WebCore::IntRect m_rootLayerScrollDamage; 825 WebCore::IntRect m_rootLayerScrollDamage;
829 OwnPtr<NonCompositedContentHost> m_nonCompositedContentHost;
830 WebLayerTreeView* m_layerTreeView; 826 WebLayerTreeView* m_layerTreeView;
831 WebLayer* m_rootLayer; 827 WebLayer* m_rootLayer;
832 WebCore::GraphicsLayer* m_rootGraphicsLayer; 828 WebCore::GraphicsLayer* m_rootGraphicsLayer;
833 OwnPtr<WebCore::GraphicsLayerFactory> m_graphicsLayerFactory; 829 OwnPtr<WebCore::GraphicsLayerFactory> m_graphicsLayerFactory;
834 bool m_isAcceleratedCompositingActive; 830 bool m_isAcceleratedCompositingActive;
835 bool m_layerTreeViewCommitsDeferred; 831 bool m_layerTreeViewCommitsDeferred;
836 bool m_compositorCreationFailed; 832 bool m_compositorCreationFailed;
837 // If true, the graphics context is being restored. 833 // If true, the graphics context is being restored.
838 bool m_recreatingGraphicsContext; 834 bool m_recreatingGraphicsContext;
839 int m_inputHandlerIdentifier; 835 int m_inputHandlerIdentifier;
(...skipping 28 matching lines...) Expand all
868 864
869 bool m_showFPSCounter; 865 bool m_showFPSCounter;
870 bool m_showPaintRects; 866 bool m_showPaintRects;
871 bool m_showDebugBorders; 867 bool m_showDebugBorders;
872 bool m_continuousPaintingEnabled; 868 bool m_continuousPaintingEnabled;
873 }; 869 };
874 870
875 } // namespace WebKit 871 } // namespace WebKit
876 872
877 #endif 873 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698