| Index: content/browser/devtools/protocol/dom_handler.cc
|
| diff --git a/content/browser/devtools/protocol/dom_handler.cc b/content/browser/devtools/protocol/dom_handler.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..84533359dc687f166329a9992411dee2f55b9baf
|
| --- /dev/null
|
| +++ b/content/browser/devtools/protocol/dom_handler.cc
|
| @@ -0,0 +1,26 @@
|
| +// 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/protocol/dom_handler.h"
|
| +
|
| +namespace content {
|
| +namespace devtools {
|
| +namespace dom {
|
| +
|
| +typedef DevToolsProtocolClient::Response Response;
|
| +
|
| +DOMHandler::DOMHandler() {
|
| +}
|
| +
|
| +DOMHandler::~DOMHandler() {
|
| +}
|
| +
|
| +Response DOMHandler::SetFileInputFiles(NodeId node_id,
|
| + const std::vector<std::string>& files) {
|
| + return Response::FallThrough();
|
| +}
|
| +
|
| +} // namespace dom
|
| +} // namespace devtools
|
| +} // namespace content
|
|
|