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

Side by Side Diff: third_party/WebKit/Source/core/exported/WebViewBase.h

Issue 2852013002: Break dependency between ChromeClient and WebViewImpl, and ChromeClientImpl. (Closed)
Patch Set: Created 3 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/loader/EmptyClients.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.#ifndef WebViewBase_h 3 // found in the LICENSE file.#ifndef WebViewBase_h
4 4
5 #ifndef WebViewBase_h 5 #ifndef WebViewBase_h
6 #define WebViewBase_h 6 #define WebViewBase_h
7 7
8 #include "platform/transforms/TransformationMatrix.h" 8 #include "platform/transforms/TransformationMatrix.h"
9 #include "platform/wtf/RefCounted.h" 9 #include "platform/wtf/RefCounted.h"
10 #include "public/platform/WebDisplayMode.h" 10 #include "public/platform/WebDisplayMode.h"
11 #include "public/platform/WebInputEventResult.h" 11 #include "public/platform/WebInputEventResult.h"
12 #include "public/web/WebElement.h" 12 #include "public/web/WebElement.h"
13 #include "public/web/WebView.h" 13 #include "public/web/WebView.h"
14 14
15 namespace blink { 15 namespace blink {
16 16
17 class AnimationWorkletProxyClient; 17 class AnimationWorkletProxyClient;
18 class ChromeClient;
18 class CompositorAnimationHost; 19 class CompositorAnimationHost;
19 class CompositorWorkerProxyClient; 20 class CompositorWorkerProxyClient;
20 class CompositorAnimationTimeline; 21 class CompositorAnimationTimeline;
21 class ContextMenuProvider; 22 class ContextMenuProvider;
22 class DevToolsEmulator; 23 class DevToolsEmulator;
23 class Frame; 24 class Frame;
24 class GraphicsLayer; 25 class GraphicsLayer;
25 class HitTestResult; 26 class HitTestResult;
26 class Page; 27 class Page;
27 class PaintLayerCompositor; 28 class PaintLayerCompositor;
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 // root. 167 // root.
167 virtual WebInputMethodControllerImpl* GetActiveWebInputMethodController() 168 virtual WebInputMethodControllerImpl* GetActiveWebInputMethodController()
168 const = 0; 169 const = 0;
169 virtual void ScheduleAnimationForWidget() = 0; 170 virtual void ScheduleAnimationForWidget() = 0;
170 virtual CompositorWorkerProxyClient* CreateCompositorWorkerProxyClient() = 0; 171 virtual CompositorWorkerProxyClient* CreateCompositorWorkerProxyClient() = 0;
171 virtual AnimationWorkletProxyClient* CreateAnimationWorkletProxyClient() = 0; 172 virtual AnimationWorkletProxyClient* CreateAnimationWorkletProxyClient() = 0;
172 virtual void SetRootGraphicsLayer(GraphicsLayer*) = 0; 173 virtual void SetRootGraphicsLayer(GraphicsLayer*) = 0;
173 virtual void SetRootLayer(WebLayer*) = 0; 174 virtual void SetRootLayer(WebLayer*) = 0;
174 virtual CompositorAnimationHost* AnimationHost() const = 0; 175 virtual CompositorAnimationHost* AnimationHost() const = 0;
175 virtual HitTestResult CoreHitTestResultAt(const WebPoint&) = 0; 176 virtual HitTestResult CoreHitTestResultAt(const WebPoint&) = 0;
177
178 virtual class ChromeClient& ChromeClient() const = 0;
176 }; 179 };
177 } 180 }
178 181
179 #endif 182 #endif
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/loader/EmptyClients.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698