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

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

Issue 2515363002: Introduce AnimationWorkletProxyClient and necessary plumbing to get it in worklet messaging proxy. (Closed)
Patch Set: Remove unnecessary PLATFORM_EXPORT Created 3 years, 10 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 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 void didCancelCompositionOnSelectionChange() override; 207 void didCancelCompositionOnSelectionChange() override;
208 void resetInputMethod() override; 208 void resetInputMethod() override;
209 void showVirtualKeyboardOnElementFocus() override; 209 void showVirtualKeyboardOnElementFocus() override;
210 210
211 void registerViewportLayers() const override; 211 void registerViewportLayers() const override;
212 212
213 void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) override; 213 void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) override;
214 void onMouseDown(Node*) override; 214 void onMouseDown(Node*) override;
215 void didUpdateBrowserControls() const override; 215 void didUpdateBrowserControls() const override;
216 216
217 CompositorProxyClient* createCompositorProxyClient(LocalFrame*) override; 217 CompositorWorkerProxyClient* createCompositorWorkerProxyClient(
218 LocalFrame*) override;
219 AnimationWorkletProxyClient* createAnimationWorkletProxyClient(
220 LocalFrame*) override;
221
218 FloatSize elasticOverscroll() const override; 222 FloatSize elasticOverscroll() const override;
219 223
220 void didObserveNonGetFetchFromScript() const override; 224 void didObserveNonGetFetchFromScript() const override;
221 225
222 std::unique_ptr<WebFrameScheduler> createFrameScheduler( 226 std::unique_ptr<WebFrameScheduler> createFrameScheduler(
223 BlameContext*) override; 227 BlameContext*) override;
224 228
225 double lastFrameTimeMonotonic() const override; 229 double lastFrameTimeMonotonic() const override;
226 230
227 void notifyPopupOpeningObservers() const; 231 void notifyPopupOpeningObservers() const;
(...skipping 21 matching lines...) Expand all
249 253
250 DEFINE_TYPE_CASTS(ChromeClientImpl, 254 DEFINE_TYPE_CASTS(ChromeClientImpl,
251 ChromeClient, 255 ChromeClient,
252 client, 256 client,
253 client->isChromeClientImpl(), 257 client->isChromeClientImpl(),
254 client.isChromeClientImpl()); 258 client.isChromeClientImpl());
255 259
256 } // namespace blink 260 } // namespace blink
257 261
258 #endif 262 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/BUILD.gn ('k') | third_party/WebKit/Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698