diff options
author | Mark Salyzyn <salyzyn@google.com> | 2016-09-28 16:15:30 -0700 |
---|---|---|
committer | Mark Salyzyn <salyzyn@google.com> | 2017-01-09 14:31:34 -0800 |
commit | 52eb4e01a49fe2e94555c000de38bbcbbb13401b (patch) | |
tree | a8bcb3cefc94c7366632782f10bfe03880bf189c /libs/hwui/DeviceInfo.cpp | |
parent | ccda81e58f8456a19b02573d6787f11729904a7b (diff) |
Replace cutils/log.h and log/logger.h with log/log.h
Test: compile
Bug: 26552300
Bug: 31289077
Change-Id: I578b15b48f0fc2807a92abbc69a377c3d2191496
Diffstat (limited to 'libs/hwui/DeviceInfo.cpp')
-rw-r--r-- | libs/hwui/DeviceInfo.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libs/hwui/DeviceInfo.cpp b/libs/hwui/DeviceInfo.cpp index 4cfbb2a43198..ff3ee2229b02 100644 --- a/libs/hwui/DeviceInfo.cpp +++ b/libs/hwui/DeviceInfo.cpp @@ -13,16 +13,18 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + #include <DeviceInfo.h> #include "Extensions.h" -#include <GLES2/gl2.h> -#include <log/log.h> - #include <thread> #include <mutex> +#include <log/log.h> + +#include <GLES2/gl2.h> + namespace android { namespace uirenderer { |