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

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: address feedback Created 4 years 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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 void willSetInputMethodState() override; 198 void willSetInputMethodState() override;
199 void didUpdateTextOfFocusedElementByNonUserInput(LocalFrame&) override; 199 void didUpdateTextOfFocusedElementByNonUserInput(LocalFrame&) override;
200 void showImeIfNeeded() override; 200 void showImeIfNeeded() override;
201 201
202 void registerViewportLayers() const override; 202 void registerViewportLayers() const override;
203 203
204 void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) override; 204 void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) override;
205 void onMouseDown(Node*) override; 205 void onMouseDown(Node*) override;
206 void didUpdateBrowserControls() const override; 206 void didUpdateBrowserControls() const override;
207 207
208 CompositorProxyClient* createCompositorProxyClient(LocalFrame*) override; 208 CompositorProxyClientFactory* compositorProxyClientFactory(
209 LocalFrame*) override;
209 FloatSize elasticOverscroll() const override; 210 FloatSize elasticOverscroll() const override;
210 211
211 void didObserveNonGetFetchFromScript() const override; 212 void didObserveNonGetFetchFromScript() const override;
212 213
213 std::unique_ptr<WebFrameScheduler> createFrameScheduler( 214 std::unique_ptr<WebFrameScheduler> createFrameScheduler(
214 BlameContext*) override; 215 BlameContext*) override;
215 216
216 double lastFrameTimeMonotonic() const override; 217 double lastFrameTimeMonotonic() const override;
217 218
218 void notifyPopupOpeningObservers() const; 219 void notifyPopupOpeningObservers() const;
(...skipping 19 matching lines...) Expand all
238 239
239 DEFINE_TYPE_CASTS(ChromeClientImpl, 240 DEFINE_TYPE_CASTS(ChromeClientImpl,
240 ChromeClient, 241 ChromeClient,
241 client, 242 client,
242 client->isChromeClientImpl(), 243 client->isChromeClientImpl(),
243 client.isChromeClientImpl()); 244 client.isChromeClientImpl());
244 245
245 } // namespace blink 246 } // namespace blink
246 247
247 #endif 248 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698