| 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
|
| deleted file mode 100644
|
| index 126511015d414a69958944bf50148363822591c4..0000000000000000000000000000000000000000
|
| --- a/content/browser/devtools/protocol/power_handler.cc
|
| +++ /dev/null
|
| @@ -1,41 +0,0 @@
|
| -// 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
|
|
|