| Index: content/browser/devtools/dom_domain_handler.cc
|
| diff --git a/content/browser/devtools/dom_domain_handler.cc b/content/browser/devtools/dom_domain_handler.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2e15b9173b7b82964b2eff3b7e1345013e6fd003
|
| --- /dev/null
|
| +++ b/content/browser/devtools/dom_domain_handler.cc
|
| @@ -0,0 +1,32 @@
|
| +// 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/dom_domain_handler.h"
|
| +
|
| +namespace content {
|
| +namespace devtools {
|
| +
|
| +typedef DevToolsProtocolFrontend::Response Response;
|
| +typedef DevToolsProtocolFrontend::ResponseStatus ResponseStatus;
|
| +
|
| +DOMDomainHandler::DOMDomainHandler() {
|
| +}
|
| +
|
| +DOMDomainHandler::~DOMDomainHandler() {
|
| +}
|
| +
|
| +void DOMDomainHandler::OnClientDetached() {
|
| +}
|
| +
|
| +void DOMDomainHandler::SetRenderViewHost(RenderViewHostImpl* host) {
|
| +}
|
| +
|
| +Response DOMDomainHandler::SetFileInputFiles(
|
| + devtools::DOMNodeId node_id,
|
| + const std::vector<std::string>& files) {
|
| + return Response(ResponseStatus::RESPONSE_STATUS_FALLTHROUGH, "");
|
| +}
|
| +
|
| +} // namespace devtools
|
| +} // namespace content
|
|
|