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

Side by Side Diff: third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp

Issue 2041753002: Worker: Protect a running debugger task from forcible worker termination (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tweak if-condition Created 4 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
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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 m_session->dispatchProtocolMessage(method, message); 90 m_session->dispatchProtocolMessage(method, message);
91 } 91 }
92 92
93 void WorkerInspectorController::dispose() 93 void WorkerInspectorController::dispose()
94 { 94 {
95 disconnectFrontend(); 95 disconnectFrontend();
96 } 96 }
97 97
98 void WorkerInspectorController::resumeStartup() 98 void WorkerInspectorController::resumeStartup()
99 { 99 {
100 m_workerGlobalScope->thread()->stopRunningDebuggerTasksOnPause(); 100 m_workerGlobalScope->thread()->stopRunningDebuggerTasksOnPauseOnWorkerThread ();
101 } 101 }
102 102
103 void WorkerInspectorController::sendProtocolMessage(int sessionId, int callId, c onst String& response, const String& state) 103 void WorkerInspectorController::sendProtocolMessage(int sessionId, int callId, c onst String& response, const String& state)
104 { 104 {
105 // Worker messages are wrapped, no need to handle callId or state. 105 // Worker messages are wrapped, no need to handle callId or state.
106 m_workerGlobalScope->thread()->workerReportingProxy().postMessageToPageInspe ctor(response); 106 m_workerGlobalScope->thread()->workerReportingProxy().postMessageToPageInspe ctor(response);
107 } 107 }
108 108
109 DEFINE_TRACE(WorkerInspectorController) 109 DEFINE_TRACE(WorkerInspectorController)
110 { 110 {
111 visitor->trace(m_workerGlobalScope); 111 visitor->trace(m_workerGlobalScope);
112 visitor->trace(m_instrumentingAgents); 112 visitor->trace(m_instrumentingAgents);
113 visitor->trace(m_session); 113 visitor->trace(m_session);
114 } 114 }
115 115
116 } // namespace blink 116 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698