| OLD | NEW | 
|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/forwarding_agent_host.h" | 5 #include "content/browser/devtools/forwarding_agent_host.h" | 
| 6 | 6 | 
| 7 #include "base/bind.h" | 7 #include "base/bind.h" | 
| 8 #include "content/browser/devtools/protocol/inspector_handler.h" | 8 #include "content/browser/devtools/protocol/inspector_handler.h" | 
| 9 | 9 | 
| 10 namespace content { | 10 namespace content { | 
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 60 } | 60 } | 
| 61 | 61 | 
| 62 bool ForwardingAgentHost::Activate() { | 62 bool ForwardingAgentHost::Activate() { | 
| 63   return false; | 63   return false; | 
| 64 } | 64 } | 
| 65 | 65 | 
| 66 bool ForwardingAgentHost::Close() { | 66 bool ForwardingAgentHost::Close() { | 
| 67   return false; | 67   return false; | 
| 68 } | 68 } | 
| 69 | 69 | 
|  | 70 void ForwardingAgentHost::OpenWorkerInspector(BrowserContext* context, | 
|  | 71                                               const std::string& id) { | 
|  | 72   if (delegate_) | 
|  | 73     delegate_->OpenWorkerInspector(context, id); | 
|  | 74 } | 
|  | 75 | 
| 70 }  // content | 76 }  // content | 
| OLD | NEW | 
|---|