diff options
author | 2012-02-17 15:34:57 -0800 | |
---|---|---|
committer | 2012-02-17 15:36:10 -0800 | |
commit | b93a03f841d93498bfea6cc92a22faa34bce1337 (patch) | |
tree | b5c2e1c097ad9dc4a3580ee661223794e0560f60 /include/androidfw/PowerManager.h | |
parent | e97df97b6cb5e4bff8f9da9ecff7cddb7d04ff41 (diff) |
frameworks/base refactoring.
First step. Move libui includes to their new home: androidfw.
Change-Id: Ic042b52fdba72f30edc3cc6339bf30b4c1b99662
Diffstat (limited to 'include/androidfw/PowerManager.h')
-rw-r--r-- | include/androidfw/PowerManager.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/include/androidfw/PowerManager.h b/include/androidfw/PowerManager.h new file mode 100644 index 000000000000..59e993abfb9c --- /dev/null +++ b/include/androidfw/PowerManager.h @@ -0,0 +1,33 @@ +/* + * Copyright (C) 2010 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef _ANDROIDFW_POWER_MANAGER_H +#define _ANDROIDFW_POWER_MANAGER_H + + +namespace android { + +enum { + POWER_MANAGER_OTHER_EVENT = 0, + POWER_MANAGER_BUTTON_EVENT = 1, + POWER_MANAGER_TOUCH_EVENT = 2, + + POWER_MANAGER_LAST_EVENT = POWER_MANAGER_TOUCH_EVENT, // Last valid event code. +}; + +} // namespace android + +#endif // _ANDROIDFW_POWER_MANAGER_H |