Bump version to 0.127
[platform/framework/web/tizen-extensions-crosswalk.git] / power / power_extension.h
1 // Copyright (c) 2013 Intel Corporation. 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.
4
5 #ifndef POWER_POWER_EXTENSION_H_
6 #define POWER_POWER_EXTENSION_H_
7
8 #include "common/extension.h"
9
10 #if defined(TIZEN)
11 #include "power/power_event_source_tizen.h"
12 #endif
13
14 class PowerExtension : public common::Extension {
15  public:
16   PowerExtension();
17   virtual ~PowerExtension();
18
19  private:
20   // common::Extension implementation.
21   virtual common::Instance* CreateInstance();
22
23 #if defined(TIZEN)
24   PowerEventSource power_event_source_;
25 #endif
26 };
27
28 #endif  // POWER_POWER_EXTENSION_H_