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

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

Issue 125643002: Convert most of base and net to use base::File (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use error_details() Created 6 years, 11 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_ANDROID_CERT_VERIFY_RESULT_ANDROID_H_ 5 #ifndef NET_ANDROID_CERT_VERIFY_RESULT_ANDROID_H_
6 #define NET_ANDROID_CERT_VERIFY_RESULT_ANDROID_H_ 6 #define NET_ANDROID_CERT_VERIFY_RESULT_ANDROID_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/platform_file.h"
10 #include "net/base/net_export.h"
11 9
12 namespace net { 10 namespace net {
13 11
14 namespace android { 12 namespace android {
15 13
16 enum CertVerifyResultAndroid { 14 enum CertVerifyResultAndroid {
17 #define CERT_VERIFY_RESULT_ANDROID(label, value) VERIFY_ ## label = value, 15 #define CERT_VERIFY_RESULT_ANDROID(label, value) VERIFY_ ## label = value,
18 #include "net/android/cert_verify_result_android_list.h" 16 #include "net/android/cert_verify_result_android_list.h"
19 #undef CERT_VERIFY_RESULT_ANDROID 17 #undef CERT_VERIFY_RESULT_ANDROID
20 }; 18 };
21 19
22 } // namespace android 20 } // namespace android
23 21
24 } // namespace net 22 } // namespace net
25 23
26 #endif // NET_ANDROID_CERT_VERIFY_RESULT_ANDROID_H_ 24 #endif // NET_ANDROID_CERT_VERIFY_RESULT_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698