Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(580)

Side by Side Diff: net/android/cert_verify_result_android.h

Issue 12212135: Return specific cert verification errors on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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_
OLDNEW
« no previous file with comments | « build/android/pylib/gtest/filter/net_unittests_disabled ('k') | net/android/cert_verify_result_android_list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698