• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2017 Google Inc.
3  *
4  * Use of this source code is governed by a BSD-style license that can be
5  * found in the LICENSE file.
6  */
7 
8 #include "SkAndroidFrameworkUtils.h"
9 
10 #ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
11 
12 #include <log/log.h>
13 
SafetyNetLog(const char * bugNumber)14 void SkAndroidFrameworkUtils::SafetyNetLog(const char* bugNumber) {
15     android_errorWriteLog(0x534e4554, bugNumber);
16 }
17 
18 #endif // SK_BUILD_FOR_ANDROID_FRAMEWORK
19 
20