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

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

Issue 2463703003: blink: Cleanup core class forward declarations (Closed)
Patch Set: Remove redundant empty lines Created 4 years, 1 month 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 ThreadedMessagingProxyBase_h 5 #ifndef ThreadedMessagingProxyBase_h
6 #define ThreadedMessagingProxyBase_h 6 #define ThreadedMessagingProxyBase_h
7 7
8 #include "core/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "core/inspector/ConsoleTypes.h" 9 #include "core/inspector/ConsoleTypes.h"
10 #include "core/workers/WorkerLoaderProxy.h" 10 #include "core/workers/WorkerLoaderProxy.h"
11 #include "wtf/Forward.h" 11 #include "wtf/Forward.h"
12 12
13 namespace blink { 13 namespace blink {
14 14
15 class ExecutionContext; 15 class ExecutionContext;
16 class ParentFrameTaskRunners; 16 class ParentFrameTaskRunners;
17 class SourceLocation;
17 class WorkerInspectorProxy; 18 class WorkerInspectorProxy;
18 class WorkerLoaderProxy; 19 class WorkerLoaderProxy;
19 class WorkerThread; 20 class WorkerThread;
20 class WorkerThreadStartupData; 21 class WorkerThreadStartupData;
21 22
22 class CORE_EXPORT ThreadedMessagingProxyBase 23 class CORE_EXPORT ThreadedMessagingProxyBase
23 : private WorkerLoaderProxyProvider { 24 : private WorkerLoaderProxyProvider {
24 public: 25 public:
25 void terminateGlobalScope(); 26 void terminateGlobalScope();
26 27
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 92
92 RefPtr<WorkerLoaderProxy> m_loaderProxy; 93 RefPtr<WorkerLoaderProxy> m_loaderProxy;
93 94
94 bool m_mayBeDestroyed; 95 bool m_mayBeDestroyed;
95 bool m_askedToTerminate; 96 bool m_askedToTerminate;
96 }; 97 };
97 98
98 } // namespace blink 99 } // namespace blink
99 100
100 #endif // ThreadedMessagingProxyBase_h 101 #endif // ThreadedMessagingProxyBase_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698