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

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: Export CompositorAnimator Created 3 years, 11 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) 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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 void setHasScrollEventHandlers(bool) override {} 208 void setHasScrollEventHandlers(bool) override {}
209 bool hasScrollEventHandlers() const override { return false; } 209 bool hasScrollEventHandlers() const override { return false; }
210 210
211 void setTouchAction(LocalFrame*, TouchAction) override {} 211 void setTouchAction(LocalFrame*, TouchAction) override {}
212 212
213 void didAssociateFormControlsAfterLoad(LocalFrame*) override {} 213 void didAssociateFormControlsAfterLoad(LocalFrame*) override {}
214 214
215 void annotatedRegionsChanged() override {} 215 void annotatedRegionsChanged() override {}
216 String acceptLanguages() override; 216 String acceptLanguages() override;
217 217
218 CompositorProxyClient* createCompositorProxyClient(LocalFrame*) override { 218 CompositorProxyClient* createCompositorProxyClient(
219 CompositorProxyClient::Type,
220 LocalFrame*) override {
219 return nullptr; 221 return nullptr;
220 } 222 }
221 223
222 void registerPopupOpeningObserver(PopupOpeningObserver*) override {} 224 void registerPopupOpeningObserver(PopupOpeningObserver*) override {}
223 void unregisterPopupOpeningObserver(PopupOpeningObserver*) override {} 225 void unregisterPopupOpeningObserver(PopupOpeningObserver*) override {}
224 226
225 std::unique_ptr<WebFrameScheduler> createFrameScheduler( 227 std::unique_ptr<WebFrameScheduler> createFrameScheduler(
226 BlameContext*) override; 228 BlameContext*) override;
227 }; 229 };
228 230
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 ~EmptyContextMenuClient() override {} 423 ~EmptyContextMenuClient() override {}
422 bool showContextMenu(const ContextMenu*, bool) override { return false; } 424 bool showContextMenu(const ContextMenu*, bool) override { return false; }
423 void clearContextMenu() override {} 425 void clearContextMenu() override {}
424 }; 426 };
425 427
426 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); 428 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&);
427 429
428 } // namespace blink 430 } // namespace blink
429 431
430 #endif // EmptyClients_h 432 #endif // EmptyClients_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698