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

Side by Side Diff: webkit/glue/devtools/debugger_agent_manager.cc

Issue 60013: Debug message handler is now called on the render thread (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 8 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
« no previous file with comments | « chrome/renderer/devtools_agent.cc ('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 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "config.h" 5 #include "config.h"
6 6
7 #include <wtf/HashSet.h> 7 #include <wtf/HashSet.h>
8 #undef LOG 8 #undef LOG
9 9
10 #include "base/string_util.h" 10 #include "base/string_util.h"
(...skipping 17 matching lines...) Expand all
28 28
29 // static 29 // static
30 DebuggerAgentManager::AttachedAgentsSet* 30 DebuggerAgentManager::AttachedAgentsSet*
31 DebuggerAgentManager::attached_agents_ = NULL; 31 DebuggerAgentManager::attached_agents_ = NULL;
32 32
33 // static 33 // static
34 void DebuggerAgentManager::DebugAttach(DebuggerAgentImpl* debugger_agent) { 34 void DebuggerAgentManager::DebugAttach(DebuggerAgentImpl* debugger_agent) {
35 #if USE(V8) 35 #if USE(V8)
36 if (!attached_agents_) { 36 if (!attached_agents_) {
37 attached_agents_ = new AttachedAgentsSet(); 37 attached_agents_ = new AttachedAgentsSet();
38 v8::Debug::SetMessageHandler(&DebuggerAgentManager::V8DebugMessageHandler); 38 v8::Debug::SetMessageHandler(
39 &DebuggerAgentManager::V8DebugMessageHandler,
40 NULL, /* no additional data */
41 false /* don't create separate thread for sending debugger output */);
39 } 42 }
40 attached_agents_->add(debugger_agent); 43 attached_agents_->add(debugger_agent);
41 #endif 44 #endif
42 } 45 }
43 46
44 // static 47 // static
45 void DebuggerAgentManager::DebugDetach(DebuggerAgentImpl* debugger_agent) { 48 void DebuggerAgentManager::DebugDetach(DebuggerAgentImpl* debugger_agent) {
46 #if USE(V8) 49 #if USE(V8)
47 if (!attached_agents_) { 50 if (!attached_agents_) {
48 NOTREACHED(); 51 NOTREACHED();
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 // static 90 // static
88 DebuggerAgentImpl* DebuggerAgentManager::GetAgentForCurrentV8Context() { 91 DebuggerAgentImpl* DebuggerAgentManager::GetAgentForCurrentV8Context() {
89 if (!attached_agents_) { 92 if (!attached_agents_) {
90 return NULL; 93 return NULL;
91 } 94 }
92 DCHECK(!attached_agents_->isEmpty()); 95 DCHECK(!attached_agents_->isEmpty());
93 // TODO(yurys): find agent for current v8 global context. Now we return first 96 // TODO(yurys): find agent for current v8 global context. Now we return first
94 // agent in the set. 97 // agent in the set.
95 return *attached_agents_->begin(); 98 return *attached_agents_->begin();
96 } 99 }
OLDNEW
« no previous file with comments | « chrome/renderer/devtools_agent.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698