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/Properties.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/Properties.cpp')
-rw-r--r-- | libs/hwui/Properties.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libs/hwui/Properties.cpp b/libs/hwui/Properties.cpp index 6f68c2bdff80..e04a06a7dcaf 100644 --- a/libs/hwui/Properties.cpp +++ b/libs/hwui/Properties.cpp @@ -13,17 +13,17 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "Properties.h" +#include "Properties.h" #include "Debug.h" -#include <cutils/compiler.h> -#include <cutils/log.h> -#include <cutils/properties.h> - #include <algorithm> #include <cstdlib> +#include <log/log.h> +#include <cutils/compiler.h> +#include <cutils/properties.h> + namespace android { namespace uirenderer { |