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

Side by Side Diff: content/browser/devtools/protocol/devtools_domain_handler.cc

Issue 2590293003: [DevTools] Rework DevToolsSession interaction with domain handlers. (Closed)
Patch Set: addressed comments Created 3 years, 12 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
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "content/browser/devtools/protocol/devtools_domain_handler.h"
6
7 #include "content/browser/devtools/protocol/protocol.h"
8
9 namespace content {
10 namespace protocol {
11
12 DevToolsDomainHandler::DevToolsDomainHandler(const std::string& name)
13 : name_(name) {
14 }
15
16 DevToolsDomainHandler::~DevToolsDomainHandler() {
17 }
18
19 void DevToolsDomainHandler::SetRenderFrameHost(RenderFrameHostImpl* host) {
20 }
21
22 void DevToolsDomainHandler::Wire(UberDispatcher* dispatcher) {
23 }
24
25 Response DevToolsDomainHandler::Disable() {
26 return Response::OK();
27 }
28
29 } // namespace protocol
30 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698