| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "content/browser/devtools/devtools_manager.h" | 5 #include "content/browser/devtools/devtools_manager.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/message_loop/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
| 9 #include "content/browser/devtools/devtools_agent_host_impl.h" | 9 #include "content/browser/devtools/devtools_agent_host_impl.h" |
| 10 #include "content/browser/loader/netlog_observer.h" | 10 #include "content/browser/loader/netlog_observer.h" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 DCHECK(!attached_hosts_count_); | 27 DCHECK(!attached_hosts_count_); |
| 28 } | 28 } |
| 29 | 29 |
| 30 void DevToolsManager::AgentHostStateChanged( | 30 void DevToolsManager::AgentHostStateChanged( |
| 31 DevToolsAgentHostImpl* agent_host, bool attached) { | 31 DevToolsAgentHostImpl* agent_host, bool attached) { |
| 32 if (attached) { | 32 if (attached) { |
| 33 if (!attached_hosts_count_) { | 33 if (!attached_hosts_count_) { |
| 34 BrowserThread::PostTask( | 34 BrowserThread::PostTask( |
| 35 BrowserThread::IO, | 35 BrowserThread::IO, |
| 36 FROM_HERE, | 36 FROM_HERE, |
| 37 base::Bind(&NetLogObserver::Attach)); | 37 base::Bind( |
| 38 &NetLogObserver::Attach, |
| 39 GetContentClient()->browser()->GetNetLog(), |
| 40 BrowserThread::GetTaskRunnerForThread(BrowserThread::IO))); |
| 38 } | 41 } |
| 39 ++attached_hosts_count_; | 42 ++attached_hosts_count_; |
| 40 } else { | 43 } else { |
| 41 --attached_hosts_count_; | 44 --attached_hosts_count_; |
| 42 if (!attached_hosts_count_) { | 45 if (!attached_hosts_count_) { |
| 43 BrowserThread::PostTask( | 46 BrowserThread::PostTask( |
| 44 BrowserThread::IO, | 47 BrowserThread::IO, |
| 45 FROM_HERE, | 48 FROM_HERE, |
| 46 base::Bind(&NetLogObserver::Detach)); | 49 base::Bind(&NetLogObserver::Detach)); |
| 47 } | 50 } |
| 48 } | 51 } |
| 49 } | 52 } |
| 50 | 53 |
| 51 } // namespace content | 54 } // namespace content |
| OLD | NEW |