diff options
author | Tim Kilbourn <tkilbourn@google.com> | 2015-05-19 15:04:30 -0700 |
---|---|---|
committer | Tim Kilbourn <tkilbourn@google.com> | 2015-06-09 11:16:04 -0700 |
commit | dbc8c16841483f665feeb9df362551b8e9e65263 (patch) | |
tree | 9113596fcab2b6a25e1c1680a33fc338dda65596 /modules/input/evdev/InputDeviceManager.cpp | |
parent | 4f3145d75f5dfc87f07f8ddf6143ba77966f35e4 (diff) |
Code layout cleanup
- Fwd declare where possible
- List .h first in the .cpp to verify proper includes
- Remove hacky -internal.h file and move testBitInRange to a new component
Change-Id: I442248c4b32738c6c2af250f45d4c8822c862e08
Diffstat (limited to 'modules/input/evdev/InputDeviceManager.cpp')
-rw-r--r-- | modules/input/evdev/InputDeviceManager.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/input/evdev/InputDeviceManager.cpp b/modules/input/evdev/InputDeviceManager.cpp index 46c9dfb7..d50c1aec 100644 --- a/modules/input/evdev/InputDeviceManager.cpp +++ b/modules/input/evdev/InputDeviceManager.cpp @@ -17,10 +17,11 @@ #define LOG_TAG "InputDeviceManager" //#define LOG_NDEBUG 0 +#include "InputDeviceManager.h" + #include <utils/Log.h> #include "InputDevice.h" -#include "InputDeviceManager.h" namespace android { |