| Index: content/browser/devtools/protocol/browser_handler.cc
|
| diff --git a/content/browser/devtools/protocol/browser_handler.cc b/content/browser/devtools/protocol/browser_handler.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6077ea5b9de60ba87146f6b457a52af2c3da73d0
|
| --- /dev/null
|
| +++ b/content/browser/devtools/protocol/browser_handler.cc
|
| @@ -0,0 +1,39 @@
|
| +// Copyright 2017 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/browser_handler.h"
|
| +
|
| +namespace content {
|
| +namespace protocol {
|
| +
|
| +BrowserHandler::BrowserHandler()
|
| + : DevToolsDomainHandler(Browser::Metainfo::domainName) {}
|
| +
|
| +BrowserHandler::~BrowserHandler() {}
|
| +
|
| +void BrowserHandler::Wire(UberDispatcher* dispatcher) {
|
| + Browser::Dispatcher::wire(dispatcher, this);
|
| +}
|
| +
|
| +Response BrowserHandler::GetWindowForTarget(
|
| + const String& targetId,
|
| + int* windowId,
|
| + std::unique_ptr<Browser::Bounds>* bounds) {
|
| + return Response::Error("not implemented");
|
| +}
|
| +
|
| +Response BrowserHandler::GetWindowBounds(
|
| + int windowId,
|
| + std::unique_ptr<Browser::Bounds>* bounds) {
|
| + return Response::Error("not implemented");
|
| +}
|
| +
|
| +Response BrowserHandler::SetWindowBounds(
|
| + int windowId,
|
| + std::unique_ptr<Browser::Bounds> bounds) {
|
| + return Response::Error("not implemented");
|
| +}
|
| +
|
| +} // namespace protocol
|
| +} // namespace content
|
|
|