aboutsummaryrefslogtreecommitdiff
path: root/src/android/SkAndroidFrameworkUtils.cpp
blob: 968b7b7d08cfcfa1ae5e999bf8f0dc026eb4abcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Copyright 2017 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "SkAndroidFrameworkUtils.h"

#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK

#include <log/log.h>

void SkAndroidFrameworkUtils::SafetyNetLog(const char* bugNumber) {
    android_errorWriteLog(0x534e4554, bugNumber);
}

#endif // SK_BUILD_FOR_ANDROID_FRAMEWORK