Implement SSLKEYLOGFILE for OpenSSL.
[chromium-blink-merge.git] / content / browser / devtools / devtools_power_handler.h
blob4e07b61b7a5f73ef01ab1cec0fc3086348c53824
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_POWER_HANDLER_H_
6 #define CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_POWER_HANDLER_H_
8 #include "base/time/time.h"
9 #include "content/browser/devtools/devtools_protocol.h"
10 #include "content/browser/power_profiler/power_profiler_observer.h"
12 namespace content {
14 // This class provides power information to DevTools.
15 class DevToolsPowerHandler
16 : public DevToolsProtocol::Handler,
17 public PowerProfilerObserver {
18 public:
19 DevToolsPowerHandler();
20 virtual ~DevToolsPowerHandler();
22 // PowerProfilerObserver override.
23 virtual void OnPowerEvent(const PowerEventVector&) OVERRIDE;
25 void OnClientDetached();
27 private:
28 scoped_refptr<DevToolsProtocol::Response> OnStart(
29 scoped_refptr<DevToolsProtocol::Command> command);
30 scoped_refptr<DevToolsProtocol::Response> OnEnd(
31 scoped_refptr<DevToolsProtocol::Command> command);
32 scoped_refptr<DevToolsProtocol::Response> OnCanProfilePower(
33 scoped_refptr<DevToolsProtocol::Command> command);
34 scoped_refptr<DevToolsProtocol::Response> OnGetAccuracyLevel(
35 scoped_refptr<DevToolsProtocol::Command> command);
36 bool is_profiling_;
38 DISALLOW_COPY_AND_ASSIGN(DevToolsPowerHandler);
41 } // namespace content
43 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_POWER_HANDLER_H_