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

Unified Diff: third_party/WebKit/Source/core/page/ChromeClient.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, 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/page/ChromeClient.h
diff --git a/third_party/WebKit/Source/core/page/ChromeClient.h b/third_party/WebKit/Source/core/page/ChromeClient.h
index a48366e816dd7702ad21a829474660f40fa8834c..5d75226069aaf1c3710d014c74bd2b2234ae8019 100644
--- a/third_party/WebKit/Source/core/page/ChromeClient.h
+++ b/third_party/WebKit/Source/core/page/ChromeClient.h
@@ -70,6 +70,7 @@ class PopupOpeningObserver;
class WebDragData;
class WebFrameScheduler;
class WebImage;
+class WorkerClients;
struct CompositedSelection;
struct DateTimeChooserParameters;
@@ -270,7 +271,7 @@ public:
virtual void registerPopupOpeningObserver(PopupOpeningObserver*) = 0;
virtual void unregisterPopupOpeningObserver(PopupOpeningObserver*) = 0;
- virtual CompositorProxyClient* createCompositorProxyClient(LocalFrame*) = 0;
+ virtual CompositorProxyClient* createCompositorProxyClient(LocalFrame*, WorkerClients&) = 0;
virtual FloatSize elasticOverscroll() const { return FloatSize(); }

Powered by Google App Engine
This is Rietveld 408576698