Remove priviledge check for powermanager.
[platform/framework/native/appfw.git] / src / system / FSysBattery.cpp
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Apache License, Version 2.0 (the License);
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //     http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16
17
18 /**
19  * @file                FSysBattery.cpp
20  * @brief               This is the implementation file for Battery class.
21  */
22
23 #include <FSysBattery.h>
24 #include <FSysDeviceManager.h>
25
26 #include <FBaseSysLog.h>
27 #include <FBase_NativeError.h>
28 #include <FSec_AccessController.h>
29 #include "FSys_BatteryImpl.h"
30
31 using namespace Tizen::Base;
32 using namespace Tizen::Security;
33
34 namespace Tizen { namespace System
35 {
36
37 Battery::Battery(void)
38 {
39 }
40
41 Battery::~Battery(void)
42 {
43 }
44
45 result
46 Battery::IsCharging(bool& charging)
47 {
48         return _BatteryImpl::IsCharging(charging);
49 }
50
51 result
52 Battery::GetCurrentLevelInPercentage(int& level)
53 {
54         return _BatteryImpl::GetCurrentLevelInPercentage(level);
55 }
56
57 result
58 Battery::GetCurrentLevel(BatteryLevel& level)
59 {
60         return _BatteryImpl::GetCurrentLevel(level);
61 }
62
63 } } // Tizen::System