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

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

Issue 459403002: DevTools: Added service workers to remote debugging targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed constants Created 6 years, 4 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 "content/browser/devtools/devtools_manager_impl.h" 7 #include "content/browser/devtools/devtools_manager_impl.h"
8 8
9 namespace content { 9 namespace content {
10 10
(...skipping 20 matching lines...) Expand all
31 31
32 void ForwardingAgentHost::Detach() { 32 void ForwardingAgentHost::Detach() {
33 delegate_->Detach(); 33 delegate_->Detach();
34 } 34 }
35 35
36 void ForwardingAgentHost::DispatchOnInspectorBackend( 36 void ForwardingAgentHost::DispatchOnInspectorBackend(
37 const std::string& message) { 37 const std::string& message) {
38 delegate_->SendMessageToBackend(message); 38 delegate_->SendMessageToBackend(message);
39 } 39 }
40 40
41 std::string ForwardingAgentHost::GetType() {
42 return "";
43 }
44
45 std::string ForwardingAgentHost::GetTitle() {
46 return "";
47 }
48
49 GURL ForwardingAgentHost::GetURL() {
50 return GURL();
51 }
52
53 bool ForwardingAgentHost::Activate() {
54 return false;
55 }
56
57 bool ForwardingAgentHost::Close() {
58 return false;
59 }
60
41 } // content 61 } // content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698