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

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

Issue 1163923005: Fix crash in inspector-protocol/debugger/debugger-pause-dedicated-worker.html (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Removed printf Created 5 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 | Annotate | Revision Log
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 29 matching lines...) Expand all
40 #include "wtf/RefPtr.h" 40 #include "wtf/RefPtr.h"
41 41
42 namespace blink { 42 namespace blink {
43 43
44 class AsyncCallTracker; 44 class AsyncCallTracker;
45 class InjectedScriptManager; 45 class InjectedScriptManager;
46 class InspectorBackendDispatcher; 46 class InspectorBackendDispatcher;
47 class InspectorFrontend; 47 class InspectorFrontend;
48 class InspectorFrontendChannel; 48 class InspectorFrontendChannel;
49 class InspectorStateClient; 49 class InspectorStateClient;
50 class InspectorTaskRunner;
50 class InstrumentingAgents; 51 class InstrumentingAgents;
51 class WorkerDebuggerAgent; 52 class WorkerDebuggerAgent;
52 class WorkerGlobalScope; 53 class WorkerGlobalScope;
53 class WorkerRuntimeAgent; 54 class WorkerRuntimeAgent;
54 class WorkerThreadDebugger; 55 class WorkerThreadDebugger;
55 56
56 class WorkerInspectorController : public RefCountedWillBeGarbageCollectedFinaliz ed<WorkerInspectorController>, public InspectorRuntimeAgent::Client { 57 class WorkerInspectorController : public RefCountedWillBeGarbageCollectedFinaliz ed<WorkerInspectorController>, public InspectorRuntimeAgent::Client {
57 WTF_MAKE_NONCOPYABLE(WorkerInspectorController); 58 WTF_MAKE_NONCOPYABLE(WorkerInspectorController);
58 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(WorkerInspectorController); 59 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(WorkerInspectorController);
59 public: 60 public:
(...skipping 24 matching lines...) Expand all
84 RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents; 85 RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents;
85 OwnPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; 86 OwnPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager;
86 OwnPtrWillBeMember<WorkerThreadDebugger> m_workerThreadDebugger; 87 OwnPtrWillBeMember<WorkerThreadDebugger> m_workerThreadDebugger;
87 InspectorAgentRegistry m_agents; 88 InspectorAgentRegistry m_agents;
88 OwnPtr<InspectorFrontendChannel> m_frontendChannel; 89 OwnPtr<InspectorFrontendChannel> m_frontendChannel;
89 OwnPtr<InspectorFrontend> m_frontend; 90 OwnPtr<InspectorFrontend> m_frontend;
90 RefPtrWillBeMember<InspectorBackendDispatcher> m_backendDispatcher; 91 RefPtrWillBeMember<InspectorBackendDispatcher> m_backendDispatcher;
91 RawPtrWillBeMember<WorkerDebuggerAgent> m_workerDebuggerAgent; 92 RawPtrWillBeMember<WorkerDebuggerAgent> m_workerDebuggerAgent;
92 OwnPtrWillBeMember<AsyncCallTracker> m_asyncCallTracker; 93 OwnPtrWillBeMember<AsyncCallTracker> m_asyncCallTracker;
93 RawPtrWillBeMember<WorkerRuntimeAgent> m_workerRuntimeAgent; 94 RawPtrWillBeMember<WorkerRuntimeAgent> m_workerRuntimeAgent;
95 OwnPtr<InspectorTaskRunner> m_inspectorTaskRunner;
94 bool m_paused; 96 bool m_paused;
95 }; 97 };
96 98
97 } 99 }
98 100
99 #endif // WorkerInspectorController_h 101 #endif // WorkerInspectorController_h
OLDNEW
« no previous file with comments | « Source/core/inspector/WorkerDebuggerAgent.cpp ('k') | Source/core/inspector/WorkerInspectorController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698