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

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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 +++ b/third_party/libevent/evutil.h 74 +++ b/third_party/libevent/evutil.h
62 @@ -38,7 +38,7 @@ 75 @@ -38,7 +38,7 @@
63 extern "C" { 76 extern "C" {
64 #endif 77 #endif
65 78
66 -#include <event-config.h> 79 -#include <event-config.h>
67 +#include "event-config.h" 80 +#include "event-config.h"
68 #ifdef _EVENT_HAVE_SYS_TIME_H 81 #ifdef _EVENT_HAVE_SYS_TIME_H
69 #include <sys/time.h> 82 #include <sys/time.h>
70 #endif 83 #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