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

Side by Side Diff: third_party/libevent/chromium.patch

Issue 8438070: libevent: fix include style (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: libevent: fix include style Created 9 years, 1 month 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
« no previous file with comments | « no previous file | third_party/libevent/evdns.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 diff --git a/third_party/libevent/evdns.c b/third_party/libevent/evdns.c
2 index f07ecc9..da6ea19 100644
3 --- a/third_party/libevent/evdns.c
4 +++ b/third_party/libevent/evdns.c
5 @@ -134,7 +134,7 @@
6 typedef ev_uint8_t u_char;
7 typedef unsigned int uint;
8 #endif
9 -#include <event.h>
10 +#include "event.h"
11
12 #define u64 ev_uint64_t
13 #define u32 ev_uint32_t
1 diff --git a/third_party/libevent/evdns.h b/third_party/libevent/evdns.h 14 diff --git a/third_party/libevent/evdns.h b/third_party/libevent/evdns.h
2 index 1eb5c38..fca4ac3 100644 15 index 1eb5c38..fca4ac3 100644
3 --- a/third_party/libevent/evdns.h 16 --- a/third_party/libevent/evdns.h
4 +++ b/third_party/libevent/evdns.h 17 +++ b/third_party/libevent/evdns.h
5 @@ -165,7 +165,7 @@ extern "C" { 18 @@ -165,7 +165,7 @@ extern "C" {
6 #endif 19 #endif
7 20
8 /* For integer types. */ 21 /* For integer types. */
9 -#include <evutil.h> 22 -#include <evutil.h>
10 +#include "evutil.h" 23 +#include "evutil.h"
(...skipping 22 matching lines...) Expand all
33 +#else 46 +#else
34 +#error generate event-config.h for your platform 47 +#error generate event-config.h for your platform
35 +#endif 48 +#endif
36 diff --git a/third_party/libevent/event.h b/third_party/libevent/event.h 49 diff --git a/third_party/libevent/event.h b/third_party/libevent/event.h
37 index cfa0fc3..72e9b8b 100644 50 index cfa0fc3..72e9b8b 100644
38 --- a/third_party/libevent/event.h 51 --- a/third_party/libevent/event.h
39 +++ b/third_party/libevent/event.h 52 +++ b/third_party/libevent/event.h
40 @@ -159,7 +159,7 @@ 53 @@ -159,7 +159,7 @@
41 extern "C" { 54 extern "C" {
42 #endif 55 #endif
43 56
M-A Ruel 2011/11/07 17:49:50 Oops, it's an error in the presubmit check. :/ Let
M-A Ruel 2011/11/08 16:39:31 The presubmit check was fixed, can you upload agai
44 -#include <event-config.h> 57 -#include <event-config.h>
45 +#include "event-config.h" 58 +#include "event-config.h"
46 #ifdef _EVENT_HAVE_SYS_TYPES_H 59 #ifdef _EVENT_HAVE_SYS_TYPES_H
47 #include <sys/types.h> 60 #include <sys/types.h>
48 #endif 61 #endif
49 @@ -172,7 +172,7 @@ extern "C" { 62 @@ -172,7 +172,7 @@ extern "C" {
50 #include <stdarg.h> 63 #include <stdarg.h>
51 64
52 /* For int types. */ 65 /* For int types. */
53 -#include <evutil.h> 66 -#include <evutil.h>
54 +#include "evutil.h" 67 +#include "evutil.h"
55 68
56 #ifdef WIN32 69 #ifdef WIN32
57 #define WIN32_LEAN_AND_MEAN 70 #define WIN32_LEAN_AND_MEAN
71 diff --git a/third_party/libevent/evhttp.h b/third_party/libevent/evhttp.h
72 index 99d16a2..30dee8b 100644
73 --- a/third_party/libevent/evhttp.h
74 +++ b/third_party/libevent/evhttp.h
75 @@ -27,7 +27,7 @@
76 #ifndef _EVHTTP_H_
77 #define _EVHTTP_H_
78
79 -#include <event.h>
80 +#include "event.h"
81
82 #ifdef __cplusplus
83 extern "C" {
58 diff --git a/third_party/libevent/evutil.h b/third_party/libevent/evutil.h 84 diff --git a/third_party/libevent/evutil.h b/third_party/libevent/evutil.h
59 index dcb0013..8b664b9 100644 85 index dcb0013..8b664b9 100644
60 --- a/third_party/libevent/evutil.h 86 --- a/third_party/libevent/evutil.h
61 +++ b/third_party/libevent/evutil.h 87 +++ b/third_party/libevent/evutil.h
62 @@ -38,7 +38,7 @@ 88 @@ -38,7 +38,7 @@
63 extern "C" { 89 extern "C" {
64 #endif 90 #endif
65 91
66 -#include <event-config.h> 92 -#include <event-config.h>
67 +#include "event-config.h" 93 +#include "event-config.h"
68 #ifdef _EVENT_HAVE_SYS_TIME_H 94 #ifdef _EVENT_HAVE_SYS_TIME_H
69 #include <sys/time.h> 95 #include <sys/time.h>
70 #endif 96 #endif
OLDNEW
« no previous file with comments | « no previous file | third_party/libevent/evdns.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698