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

Side by Side Diff: content/browser/devtools/devtools_agent_host_impl.cc

Issue 349033009: DevTools: Added service workers to chrome://inspect/#devices (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added GetOrCreateAllHosts Created 6 years, 5 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
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698