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

Side by Side Diff: Source/core/inspector/WorkerInspectorController.h

Issue 650183003: Clean up forward declarations in Source/core/inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 | « Source/core/inspector/WorkerDebuggerAgent.h ('k') | 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 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 26 matching lines...) Expand all
37 #include "wtf/Noncopyable.h" 37 #include "wtf/Noncopyable.h"
38 #include "wtf/OwnPtr.h" 38 #include "wtf/OwnPtr.h"
39 #include "wtf/RefPtr.h" 39 #include "wtf/RefPtr.h"
40 40
41 namespace blink { 41 namespace blink {
42 42
43 class InjectedScriptManager; 43 class InjectedScriptManager;
44 class InspectorBackendDispatcher; 44 class InspectorBackendDispatcher;
45 class InspectorFrontend; 45 class InspectorFrontend;
46 class InspectorFrontendChannel; 46 class InspectorFrontendChannel;
47 class InspectorState;
48 class InspectorStateClient; 47 class InspectorStateClient;
49 class InstrumentingAgents; 48 class InstrumentingAgents;
50 class WorkerDebuggerAgent; 49 class WorkerDebuggerAgent;
51 class WorkerGlobalScope; 50 class WorkerGlobalScope;
52 class WorkerScriptDebugServer; 51 class WorkerScriptDebugServer;
53 52
54 class WorkerInspectorController : public RefCountedWillBeGarbageCollectedFinaliz ed<WorkerInspectorController> { 53 class WorkerInspectorController : public RefCountedWillBeGarbageCollectedFinaliz ed<WorkerInspectorController> {
55 WTF_MAKE_NONCOPYABLE(WorkerInspectorController); 54 WTF_MAKE_NONCOPYABLE(WorkerInspectorController);
56 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; 55 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
57 public: 56 public:
(...skipping 21 matching lines...) Expand all
79 InspectorAgentRegistry m_agents; 78 InspectorAgentRegistry m_agents;
80 OwnPtr<InspectorFrontendChannel> m_frontendChannel; 79 OwnPtr<InspectorFrontendChannel> m_frontendChannel;
81 OwnPtr<InspectorFrontend> m_frontend; 80 OwnPtr<InspectorFrontend> m_frontend;
82 RefPtrWillBeMember<InspectorBackendDispatcher> m_backendDispatcher; 81 RefPtrWillBeMember<InspectorBackendDispatcher> m_backendDispatcher;
83 RawPtrWillBeMember<WorkerDebuggerAgent> m_workerDebuggerAgent; 82 RawPtrWillBeMember<WorkerDebuggerAgent> m_workerDebuggerAgent;
84 }; 83 };
85 84
86 } 85 }
87 86
88 #endif // !defined(WorkerInspectorController_h) 87 #endif // !defined(WorkerInspectorController_h)
OLDNEW
« no previous file with comments | « Source/core/inspector/WorkerDebuggerAgent.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698