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

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

Issue 1060053002: [WIP] Support opening an inspector window for ServiceWorker running on Android (chromium) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
OLDNEW
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
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
OLDNEW
« no previous file with comments | « content/browser/devtools/forwarding_agent_host.h ('k') | content/browser/devtools/ipc_devtools_agent_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698