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

Side by Side Diff: third_party/WebKit/Source/core/workers/WorkletModuleTreeClient.h

Issue 2935823003: Add ifdef guard to WorkletModuleTreeClient.h (Closed)
Patch Set: Created 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 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 WorkletModuleTreeClient_h
6 #define WorkletModuleTreeClient_h
7
5 #include "core/dom/Modulator.h" 8 #include "core/dom/Modulator.h"
6 #include "core/workers/WorkletPendingTasks.h" 9 #include "core/workers/WorkletPendingTasks.h"
7 #include "platform/WebTaskRunner.h" 10 #include "platform/WebTaskRunner.h"
8 #include "platform/heap/GarbageCollected.h" 11 #include "platform/heap/GarbageCollected.h"
9 12
10 namespace blink { 13 namespace blink {
11 14
12 class ModuleScript; 15 class ModuleScript;
13 16
14 // A ModuleTreeClient that lives on the worklet context's thread. 17 // A ModuleTreeClient that lives on the worklet context's thread.
(...skipping 12 matching lines...) Expand all
27 30
28 DECLARE_VIRTUAL_TRACE(); 31 DECLARE_VIRTUAL_TRACE();
29 32
30 private: 33 private:
31 Member<Modulator> modulator_; 34 Member<Modulator> modulator_;
32 RefPtr<WebTaskRunner> outside_settings_task_runner_; 35 RefPtr<WebTaskRunner> outside_settings_task_runner_;
33 CrossThreadPersistent<WorkletPendingTasks> pending_tasks_; 36 CrossThreadPersistent<WorkletPendingTasks> pending_tasks_;
34 }; 37 };
35 38
36 } // namespace blink 39 } // namespace blink
40
41 #endif // WorkletModuleTreeClient_h
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698