| Index: content/browser/devtools/inspector_domain_handler.cc
|
| diff --git a/content/browser/devtools/inspector_domain_handler.cc b/content/browser/devtools/inspector_domain_handler.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..927f6715e909b528a7f064b0ba41e89c569de870
|
| --- /dev/null
|
| +++ b/content/browser/devtools/inspector_domain_handler.cc
|
| @@ -0,0 +1,27 @@
|
| +// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "content/browser/devtools/inspector_domain_handler.h"
|
| +
|
| +namespace content {
|
| +namespace devtools {
|
| +
|
| +InspectorDomainHandler::InspectorDomainHandler() {
|
| +}
|
| +
|
| +InspectorDomainHandler::~InspectorDomainHandler() {
|
| +}
|
| +
|
| +void InspectorDomainHandler::OnClientDetached() {
|
| +}
|
| +
|
| +void InspectorDomainHandler::SetRenderViewHost(RenderViewHostImpl* host) {
|
| +}
|
| +
|
| +void InspectorDomainHandler::SetFrontend(
|
| + scoped_ptr<InspectorDomainFrontend> frontend) {
|
| +}
|
| +
|
| +} // namespace devtools
|
| +} // namespace content
|
|
|