| Index: content/browser/devtools/protocol/power_handler.cc
|
| diff --git a/content/browser/devtools/protocol/power_handler.cc b/content/browser/devtools/protocol/power_handler.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..126511015d414a69958944bf50148363822591c4
|
| --- /dev/null
|
| +++ b/content/browser/devtools/protocol/power_handler.cc
|
| @@ -0,0 +1,41 @@
|
| +// 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/power_handler.h"
|
| +
|
| +namespace content {
|
| +namespace devtools {
|
| +namespace power {
|
| +
|
| +typedef DevToolsProtocolClient::Response Response;
|
| +
|
| +PowerHandler::PowerHandler() {
|
| +}
|
| +
|
| +PowerHandler::~PowerHandler() {
|
| +}
|
| +
|
| +void PowerHandler::SetClient(scoped_ptr<Client> client) {
|
| + client_.swap(client);
|
| +}
|
| +
|
| +Response PowerHandler::Start() {
|
| + return Response::FallThrough();
|
| +}
|
| +
|
| +Response PowerHandler::End() {
|
| + return Response::FallThrough();
|
| +}
|
| +
|
| +Response PowerHandler::CanProfilePower(bool* result) {
|
| + return Response::FallThrough();
|
| +}
|
| +
|
| +Response PowerHandler::GetAccuracyLevel(std::string* result) {
|
| + return Response::FallThrough();
|
| +}
|
| +
|
| +} // namespace power
|
| +} // namespace devtools
|
| +} // namespace content
|
|
|