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

Side by Side Diff: third_party/WebKit/Source/core/loader/EmptyClients.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) 2006 Eric Seidel (eric@webkit.org) 2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org)
3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without 7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions 8 * modification, are permitted provided that the following conditions
9 * are met: 9 * are met:
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 void setHasScrollEventHandlers(bool) override {} 209 void setHasScrollEventHandlers(bool) override {}
210 bool hasScrollEventHandlers() const override { return false; } 210 bool hasScrollEventHandlers() const override { return false; }
211 211
212 void setTouchAction(TouchAction) override {} 212 void setTouchAction(TouchAction) override {}
213 213
214 void didAssociateFormControlsAfterLoad(LocalFrame*) override {} 214 void didAssociateFormControlsAfterLoad(LocalFrame*) override {}
215 215
216 void annotatedRegionsChanged() override {} 216 void annotatedRegionsChanged() override {}
217 String acceptLanguages() override; 217 String acceptLanguages() override;
218 218
219 CompositorProxyClient* createCompositorProxyClient(LocalFrame*) override { 219 CompositorProxyClientFactory* compositorProxyClientFactory(
220 LocalFrame*) override {
220 return nullptr; 221 return nullptr;
221 } 222 }
222 223
223 void registerPopupOpeningObserver(PopupOpeningObserver*) override {} 224 void registerPopupOpeningObserver(PopupOpeningObserver*) override {}
224 void unregisterPopupOpeningObserver(PopupOpeningObserver*) override {} 225 void unregisterPopupOpeningObserver(PopupOpeningObserver*) override {}
225 226
226 std::unique_ptr<WebFrameScheduler> createFrameScheduler( 227 std::unique_ptr<WebFrameScheduler> createFrameScheduler(
227 BlameContext*) override; 228 BlameContext*) override;
228 }; 229 };
229 230
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 ~EmptyContextMenuClient() override {} 427 ~EmptyContextMenuClient() override {}
427 bool showContextMenu(const ContextMenu*, bool) override { return false; } 428 bool showContextMenu(const ContextMenu*, bool) override { return false; }
428 void clearContextMenu() override {} 429 void clearContextMenu() override {}
429 }; 430 };
430 431
431 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); 432 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&);
432 433
433 } // namespace blink 434 } // namespace blink
434 435
435 #endif // EmptyClients_h 436 #endif // EmptyClients_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698