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

Side by Side Diff: third_party/WebKit/Source/core/dom/CompositorProxyClient.h

Issue 1900423004: [compositorworker] Register compositor proxies with proxy client (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update comment Created 4 years, 6 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 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CompositorProxyClient_h 5 #ifndef CompositorProxyClient_h
6 #define CompositorProxyClient_h 6 #define CompositorProxyClient_h
7 7
8 #include "core/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "core/workers/WorkerClients.h" 9 #include "core/workers/WorkerClients.h"
10 #include "wtf/Noncopyable.h" 10 #include "wtf/Noncopyable.h"
(...skipping 12 matching lines...) Expand all
23 WTF_MAKE_NONCOPYABLE(CompositorProxyClient); 23 WTF_MAKE_NONCOPYABLE(CompositorProxyClient);
24 24
25 public: 25 public:
26 CompositorProxyClient() {} 26 CompositorProxyClient() {}
27 27
28 static CompositorProxyClient* from(WorkerClients*); 28 static CompositorProxyClient* from(WorkerClients*);
29 static const char* supplementName(); 29 static const char* supplementName();
30 30
31 virtual void setGlobalScope(WorkerGlobalScope*) = 0; 31 virtual void setGlobalScope(WorkerGlobalScope*) = 0;
32 virtual void requestAnimationFrame() = 0; 32 virtual void requestAnimationFrame() = 0;
33 virtual void registerCompositorProxy(CompositorProxy*) = 0;
34 // It is not guaranteed to receive an unregister call for every registered
35 // proxy. In fact we only receive one when a proxy is explicitly
36 // disconnected otherwise we rely on oilpan collection process to remove the
37 // weak reference to the proxy.
38 virtual void unregisterCompositorProxy(CompositorProxy*) = 0;
33 }; 39 };
34 40
35 CORE_EXPORT void provideCompositorProxyClientTo(WorkerClients*, CompositorProxyC lient*); 41 CORE_EXPORT void provideCompositorProxyClientTo(WorkerClients*, CompositorProxyC lient*);
36 42
37 } // namespace blink 43 } // namespace blink
38 44
39 #endif // CompositorProxyClient_h 45 #endif // CompositorProxyClient_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698