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

Side by Side Diff: Source/bindings/core/v8/WorkerScriptDebugServer.cpp

Issue 272613002: DevTools: implemented scriptFailedToParse protocol event (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 v8::Local<v8::Object> debuggerScript = m_debuggerScript.newLocal(m_isolate); 65 v8::Local<v8::Object> debuggerScript = m_debuggerScript.newLocal(m_isolate);
66 ASSERT(!debuggerScript->IsUndefined()); 66 ASSERT(!debuggerScript->IsUndefined());
67 67
68 v8::Handle<v8::Function> getScriptsFunction = v8::Local<v8::Function>::Cast( debuggerScript->Get(v8AtomicString(m_isolate, "getWorkerScripts"))); 68 v8::Handle<v8::Function> getScriptsFunction = v8::Local<v8::Function>::Cast( debuggerScript->Get(v8AtomicString(m_isolate, "getWorkerScripts")));
69 v8::Handle<v8::Value> value = V8ScriptRunner::callInternalFunction(getScript sFunction, debuggerScript, 0, 0, m_isolate); 69 v8::Handle<v8::Value> value = V8ScriptRunner::callInternalFunction(getScript sFunction, debuggerScript, 0, 0, m_isolate);
70 if (value.IsEmpty()) 70 if (value.IsEmpty())
71 return; 71 return;
72 ASSERT(!value->IsUndefined() && value->IsArray()); 72 ASSERT(!value->IsUndefined() && value->IsArray());
73 v8::Handle<v8::Array> scriptsArray = v8::Handle<v8::Array>::Cast(value); 73 v8::Handle<v8::Array> scriptsArray = v8::Handle<v8::Array>::Cast(value);
74 for (unsigned i = 0; i < scriptsArray->Length(); ++i) 74 for (unsigned i = 0; i < scriptsArray->Length(); ++i)
75 dispatchDidParseSource(listener, v8::Handle<v8::Object>::Cast(scriptsArr ay->Get(v8::Integer::New(m_isolate, i)))); 75 dispatchDidParseSource(listener, v8::Handle<v8::Object>::Cast(scriptsArr ay->Get(v8::Integer::New(m_isolate, i))), CompileSuccess);
76 } 76 }
77 77
78 void WorkerScriptDebugServer::removeListener(ScriptDebugListener* listener) 78 void WorkerScriptDebugServer::removeListener(ScriptDebugListener* listener)
79 { 79 {
80 ASSERT(m_listener == listener); 80 ASSERT(m_listener == listener);
81 continueProgram(); 81 continueProgram();
82 discardDebuggerScript(); 82 discardDebuggerScript();
83 m_listener = 0; 83 m_listener = 0;
84 v8::Debug::SetDebugEventListener(0); 84 v8::Debug::SetDebugEventListener(0);
85 } 85 }
(...skipping 21 matching lines...) Expand all
107 if (m_listener) 107 if (m_listener)
108 m_listener->didContinue(); 108 m_listener->didContinue();
109 } 109 }
110 110
111 void WorkerScriptDebugServer::quitMessageLoopOnPause() 111 void WorkerScriptDebugServer::quitMessageLoopOnPause()
112 { 112 {
113 // Nothing to do here in case of workers since runMessageLoopOnPause will ch eck for paused state after each debugger command. 113 // Nothing to do here in case of workers since runMessageLoopOnPause will ch eck for paused state after each debugger command.
114 } 114 }
115 115
116 } // namespace WebCore 116 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/bindings/core/v8/ScriptDebugServer.cpp ('k') | Source/core/inspector/InspectorDebuggerAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698