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

Side by Side Diff: Source/modules/compositorworker/CompositorWorkerGlobalScope.h

Issue 1058493002: Oilpan: fix build after r192936. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/modules/compositorworker/CompositorWorkerGlobalScope.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 CompositorWorkerGlobalScope_h 5 #ifndef CompositorWorkerGlobalScope_h
6 #define CompositorWorkerGlobalScope_h 6 #define CompositorWorkerGlobalScope_h
7 7
8 #include "core/dom/FrameRequestCallbackCollection.h" 8 #include "core/dom/FrameRequestCallbackCollection.h"
9 #include "core/dom/MessagePort.h" 9 #include "core/dom/MessagePort.h"
10 #include "core/workers/WorkerGlobalScope.h" 10 #include "core/workers/WorkerGlobalScope.h"
(...skipping 15 matching lines...) Expand all
26 void postMessage(ExecutionContext*, PassRefPtr<SerializedScriptValue>, const MessagePortArray*, ExceptionState&); 26 void postMessage(ExecutionContext*, PassRefPtr<SerializedScriptValue>, const MessagePortArray*, ExceptionState&);
27 DEFINE_ATTRIBUTE_EVENT_LISTENER(message); 27 DEFINE_ATTRIBUTE_EVENT_LISTENER(message);
28 28
29 int requestAnimationFrame(FrameRequestCallback*); 29 int requestAnimationFrame(FrameRequestCallback*);
30 void cancelAnimationFrame(int id); 30 void cancelAnimationFrame(int id);
31 void executeAnimationFrameCallbacks(double highResTimeNow); 31 void executeAnimationFrameCallbacks(double highResTimeNow);
32 32
33 // ExecutionContext: 33 // ExecutionContext:
34 bool isCompositorWorkerGlobalScope() const override { return true; } 34 bool isCompositorWorkerGlobalScope() const override { return true; }
35 35
36 DECLARE_VIRTUAL_TRACE();
37
36 private: 38 private:
37 CompositorWorkerGlobalScope(const KURL&, const String& userAgent, Compositor WorkerThread*, double timeOrigin, const SecurityOrigin*, PassOwnPtrWillBeRawPtr< WorkerClients>); 39 CompositorWorkerGlobalScope(const KURL&, const String& userAgent, Compositor WorkerThread*, double timeOrigin, const SecurityOrigin*, PassOwnPtrWillBeRawPtr< WorkerClients>);
38 CompositorWorkerThread* thread() const; 40 CompositorWorkerThread* thread() const;
39 41
40 FrameRequestCallbackCollection m_callbackCollection; 42 FrameRequestCallbackCollection m_callbackCollection;
41 }; 43 };
42 44
43 } // namespace blink 45 } // namespace blink
44 46
45 #endif // CompositorWorkerGlobalScope_h 47 #endif // CompositorWorkerGlobalScope_h
OLDNEW
« no previous file with comments | « no previous file | Source/modules/compositorworker/CompositorWorkerGlobalScope.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698