| 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_agent_host_impl.h" | 5 #include "content/browser/devtools/devtools_agent_host_impl.h" |
| 6 | 6 |
| 7 #include <map> | 7 #include <map> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/guid.h" | 10 #include "base/guid.h" |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 } | 65 } |
| 66 | 66 |
| 67 void DevToolsAgentHostImpl::DisconnectRenderViewHost() {} | 67 void DevToolsAgentHostImpl::DisconnectRenderViewHost() {} |
| 68 | 68 |
| 69 void DevToolsAgentHostImpl::ConnectRenderViewHost(RenderViewHost* rvh) {} | 69 void DevToolsAgentHostImpl::ConnectRenderViewHost(RenderViewHost* rvh) {} |
| 70 | 70 |
| 71 bool DevToolsAgentHostImpl::IsWorker() const { | 71 bool DevToolsAgentHostImpl::IsWorker() const { |
| 72 return false; | 72 return false; |
| 73 } | 73 } |
| 74 | 74 |
| 75 GURL DevToolsAgentHostImpl::GetURL() { |
| 76 return GURL(); |
| 77 } |
| 78 |
| 75 void DevToolsAgentHostImpl::NotifyCloseListener() { | 79 void DevToolsAgentHostImpl::NotifyCloseListener() { |
| 76 if (close_listener_) { | 80 if (close_listener_) { |
| 77 scoped_refptr<DevToolsAgentHostImpl> protect(this); | 81 scoped_refptr<DevToolsAgentHostImpl> protect(this); |
| 78 close_listener_->AgentHostClosing(this); | 82 close_listener_->AgentHostClosing(this); |
| 79 close_listener_ = NULL; | 83 close_listener_ = NULL; |
| 80 } | 84 } |
| 81 } | 85 } |
| 82 | 86 |
| 83 } // namespace content | 87 } // namespace content |
| OLD | NEW |