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

Unified Diff: sky/engine/v8_inspector/PageScriptDebugServer.cpp

Issue 922053002: Remove unused V8 integration code in Sky (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/engine/v8_inspector/PageScriptDebugServer.h ('k') | sky/engine/v8_inspector/PromiseTracker.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/v8_inspector/PageScriptDebugServer.cpp
diff --git a/sky/engine/v8_inspector/PageScriptDebugServer.cpp b/sky/engine/v8_inspector/PageScriptDebugServer.cpp
deleted file mode 100644
index 758c340a1cd134511c0e09fc7481ca1ef695fe04..0000000000000000000000000000000000000000
--- a/sky/engine/v8_inspector/PageScriptDebugServer.cpp
+++ /dev/null
@@ -1,190 +0,0 @@
-/*
- * Copyright (c) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- * * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "sky/engine/config.h"
-#include "sky/engine/v8_inspector/PageScriptDebugServer.h"
-
-#include "gen/sky/bindings/core/v8/V8Window.h"
-#include "sky/engine/bindings/core/v8/DOMWrapperWorld.h"
-#include "sky/engine/bindings/core/v8/ScriptController.h"
-#include "sky/engine/bindings/core/v8/ScriptSourceCode.h"
-#include "sky/engine/bindings/core/v8/V8Binding.h"
-#include "sky/engine/bindings/core/v8/V8ScriptRunner.h"
-#include "sky/engine/bindings/core/v8/WindowProxy.h"
-#include "sky/engine/core/dom/ExecutionContext.h"
-#include "sky/engine/core/frame/FrameConsole.h"
-#include "sky/engine/core/frame/LocalFrame.h"
-#include "sky/engine/v8_inspector/inspector_host.h"
-#include "sky/engine/v8_inspector/ScriptDebugListener.h"
-#include "sky/engine/wtf/OwnPtr.h"
-#include "sky/engine/wtf/PassOwnPtr.h"
-#include "sky/engine/wtf/StdLibExtras.h"
-#include "sky/engine/wtf/TemporaryChange.h"
-
-namespace blink {
-
-PageScriptDebugServer& PageScriptDebugServer::shared()
-{
- DEFINE_STATIC_LOCAL(PageScriptDebugServer, server, ());
- return server;
-}
-
-v8::Isolate* PageScriptDebugServer::s_mainThreadIsolate = 0;
-
-void PageScriptDebugServer::setMainThreadIsolate(v8::Isolate* isolate)
-{
- s_mainThreadIsolate = isolate;
-}
-
-PageScriptDebugServer::PageScriptDebugServer()
- : ScriptDebugServer(s_mainThreadIsolate)
- , m_pausedHost(0)
-{
-}
-
-PageScriptDebugServer::~PageScriptDebugServer()
-{
-}
-
-void PageScriptDebugServer::addListener(ScriptDebugListener* listener, inspector::InspectorHost* host)
-{
- v8::HandleScope scope(m_isolate);
-
- if (!m_listenersMap.size()) {
- v8::Debug::SetDebugEventListener(&PageScriptDebugServer::v8DebugEventCallback, v8::External::New(m_isolate, this));
- ensureDebuggerScriptCompiled();
- }
-
- v8::Local<v8::Context> debuggerContext = v8::Debug::GetDebugContext();
- v8::Context::Scope contextScope(debuggerContext);
-
- v8::Local<v8::Object> debuggerScript = m_debuggerScript.newLocal(m_isolate);
- ASSERT(!debuggerScript->IsUndefined());
- m_listenersMap.set(host, listener);
-
- v8::Local<v8::Context> context = host->GetContext();
- v8::Handle<v8::Function> getScriptsFunction = v8::Local<v8::Function>::Cast(debuggerScript->Get(v8AtomicString(m_isolate, "getScripts")));
- v8::Handle<v8::Value> argv[] = { context->GetEmbedderData(0) };
- v8::Handle<v8::Value> value = V8ScriptRunner::callInternalFunction(getScriptsFunction, debuggerScript, WTF_ARRAY_LENGTH(argv), argv, m_isolate);
- if (value.IsEmpty())
- return;
- ASSERT(!value->IsUndefined() && value->IsArray());
- v8::Handle<v8::Array> scriptsArray = v8::Handle<v8::Array>::Cast(value);
- for (unsigned i = 0; i < scriptsArray->Length(); ++i)
- dispatchDidParseSource(listener, v8::Handle<v8::Object>::Cast(scriptsArray->Get(v8::Integer::New(m_isolate, i))), CompileSuccess);
-}
-
-void PageScriptDebugServer::removeListener(ScriptDebugListener* listener, inspector::InspectorHost* host)
-{
- if (!m_listenersMap.contains(host))
- return;
-
- if (m_pausedHost == host)
- continueProgram();
-
- m_listenersMap.remove(host);
-
- if (m_listenersMap.isEmpty()) {
- discardDebuggerScript();
- v8::Debug::SetDebugEventListener(0);
- // FIXME: Remove all breakpoints set by the agent.
- }
-}
-
-void PageScriptDebugServer::interruptAndRun(PassOwnPtr<Task> task)
-{
- ScriptDebugServer::interruptAndRun(task, s_mainThreadIsolate);
-}
-
-void PageScriptDebugServer::setClientMessageLoop(PassOwnPtr<ClientMessageLoop> clientMessageLoop)
-{
- m_clientMessageLoop = clientMessageLoop;
-}
-
-void PageScriptDebugServer::setInspectorHostResolver(PassOwnPtr<InspectorHostResolver> resolver)
-{
- m_inspectorHostResolver = resolver;
-}
-
-void PageScriptDebugServer::compileScript(ScriptState* scriptState, const String& expression, const String& sourceURL, String* scriptId, String* exceptionDetailsText, int* lineNumber, int* columnNumber, RefPtr<ScriptCallStack>* stackTrace)
-{
- ExecutionContext* executionContext = scriptState->executionContext();
- RefPtr<LocalFrame> protect = executionContext->executingWindow()->frame();
- ScriptDebugServer::compileScript(scriptState, expression, sourceURL, scriptId, exceptionDetailsText, lineNumber, columnNumber, stackTrace);
- if (!scriptId->isNull())
- m_compiledScriptURLs.set(*scriptId, sourceURL);
-}
-
-void PageScriptDebugServer::clearCompiledScripts()
-{
- ScriptDebugServer::clearCompiledScripts();
- m_compiledScriptURLs.clear();
-}
-
-void PageScriptDebugServer::runScript(ScriptState* scriptState, const String& scriptId, ScriptValue* result, bool* wasThrown, String* exceptionDetailsText, int* lineNumber, int* columnNumber, RefPtr<ScriptCallStack>* stackTrace)
-{
- String sourceURL = m_compiledScriptURLs.take(scriptId);
-
- ExecutionContext* executionContext = scriptState->executionContext();
- LocalFrame* frame = executionContext->executingWindow()->frame();
-
- RefPtr<LocalFrame> protect = frame;
- ScriptDebugServer::runScript(scriptState, scriptId, result, wasThrown, exceptionDetailsText, lineNumber, columnNumber, stackTrace);
-}
-
-ScriptDebugListener* PageScriptDebugServer::getDebugListenerForContext(v8::Handle<v8::Context> context)
-{
- inspector::InspectorHost* inspectorHost = m_inspectorHostResolver->inspectorHostFor(context);
- if (!inspectorHost)
- return 0;
- return m_listenersMap.get(inspectorHost);
-}
-
-void PageScriptDebugServer::runMessageLoopOnPause(v8::Handle<v8::Context> context)
-{
- m_pausedHost = m_inspectorHostResolver->inspectorHostFor(context);
- ASSERT(m_pausedHost);
-
- // Wait for continue or step command.
- m_clientMessageLoop->run(m_pausedHost);
-
- // The listener may have been removed in the nested loop.
- if (ScriptDebugListener* listener = m_listenersMap.get(m_pausedHost))
- listener->didContinue();
-
- m_pausedHost = 0;
-}
-
-void PageScriptDebugServer::quitMessageLoopOnPause()
-{
- m_clientMessageLoop->quitNow();
-}
-
-} // namespace blink
« no previous file with comments | « sky/engine/v8_inspector/PageScriptDebugServer.h ('k') | sky/engine/v8_inspector/PromiseTracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698