1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef NET_ANDROID_CERT_VERIFY_RESULT_ANDROID_H_ 6 #define NET_ANDROID_CERT_VERIFY_RESULT_ANDROID_H_ 7 8 #include "base/basictypes.h" 9 #include "base/platform_file.h" 10 #include "net/base/net_export.h" 11 12 namespace net { 13 14 namespace android { 15 16 enum CertVerifyResultAndroid { 17 #define CERT_VERIFY_RESULT_ANDROID(label, value) VERIFY_ ## label = value, 18 #include "net/android/cert_verify_result_android_list.h" 19 #undef CERT_VERIFY_RESULT_ANDROID 20 }; 21 22 } // namespace android 23 24 } // namespace net 25 26 #endif // NET_ANDROID_CERT_VERIFY_RESULT_ANDROID_H_ 27