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

Side by Side Diff: third_party/WebKit/Source/web/WebViewFrameWidget.h

Issue 2150443002: Supplement should have a Member to the corresponding Supplementable object (Part 1) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: temp Created 4 years, 3 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be found 2 // Use of this source code is governed by a BSD-style license that can be found
3 // in the LICENSE file. 3 // in the LICENSE file.
4 4
5 #ifndef WebViewFrameWidget_h 5 #ifndef WebViewFrameWidget_h
6 #define WebViewFrameWidget_h 6 #define WebViewFrameWidget_h
7 7
8 #include "platform/heap/Handle.h" 8 #include "platform/heap/Handle.h"
9 #include "web/WebFrameWidgetBase.h" 9 #include "web/WebFrameWidgetBase.h"
10 #include "wtf/Noncopyable.h" 10 #include "wtf/Noncopyable.h"
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 WebPagePopup* pagePopup() const override; 89 WebPagePopup* pagePopup() const override;
90 void updateTopControlsState(WebTopControlsState constraints, WebTopControlsS tate current, bool animate) override; 90 void updateTopControlsState(WebTopControlsState constraints, WebTopControlsS tate current, bool animate) override;
91 void setVisibilityState(WebPageVisibilityState) override; 91 void setVisibilityState(WebPageVisibilityState) override;
92 bool isTransparent() const override; 92 bool isTransparent() const override;
93 void setIsTransparent(bool) override; 93 void setIsTransparent(bool) override;
94 void setBaseBackgroundColor(WebColor) override; 94 void setBaseBackgroundColor(WebColor) override;
95 95
96 // WebFrameWidgetBase overrides: 96 // WebFrameWidgetBase overrides:
97 bool forSubframe() const override { return false; } 97 bool forSubframe() const override { return false; }
98 void scheduleAnimation() override; 98 void scheduleAnimation() override;
99 CompositorProxyClient* createCompositorProxyClient() override; 99 CompositorProxyClient* createCompositorProxyClient(WorkerClients&) override;
100 void setRootGraphicsLayer(GraphicsLayer*) override; 100 void setRootGraphicsLayer(GraphicsLayer*) override;
101 void attachCompositorAnimationTimeline(CompositorAnimationTimeline*) overrid e; 101 void attachCompositorAnimationTimeline(CompositorAnimationTimeline*) overrid e;
102 void detachCompositorAnimationTimeline(CompositorAnimationTimeline*) overrid e; 102 void detachCompositorAnimationTimeline(CompositorAnimationTimeline*) overrid e;
103 WebWidgetClient* client() const override { return m_client; } 103 WebWidgetClient* client() const override { return m_client; }
104 104
105 private: 105 private:
106 WebWidgetClient* m_client; 106 WebWidgetClient* m_client;
107 RefPtr<WebViewImpl> m_webView; 107 RefPtr<WebViewImpl> m_webView;
108 Persistent<WebLocalFrameImpl> m_mainFrame; 108 Persistent<WebLocalFrameImpl> m_mainFrame;
109 }; 109 };
110 110
111 } // namespace blink 111 } // namespace blink
112 112
113 #endif // WebViewFrameWidget_h 113 #endif // WebViewFrameWidget_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebLocalFrameImpl.cpp ('k') | third_party/WebKit/Source/web/WebViewFrameWidget.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698