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

Unified Diff: third_party/brotli/dec/transform.h

Issue 2537133002: Update brotli to v1.0.0-snapshot. (Closed)
Patch Set: Fixed typo Created 4 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/brotli/dec/state.c ('k') | third_party/brotli/dec/types.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/brotli/dec/transform.h
diff --git a/third_party/brotli/dec/transform.h b/third_party/brotli/dec/transform.h
index 8c08f3fc0b93c7d19fe6b188a64c76b2ef3ea015..fde3cdfdf21ed7e49950d4434ec59de11eb7f251 100644
--- a/third_party/brotli/dec/transform.h
+++ b/third_party/brotli/dec/transform.h
@@ -9,8 +9,8 @@
#ifndef BROTLI_DEC_TRANSFORM_H_
#define BROTLI_DEC_TRANSFORM_H_
+#include <brotli/types.h>
#include "./port.h"
-#include "./types.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
@@ -247,7 +247,7 @@ static int ToUpperCase(uint8_t* p) {
}
return 1;
}
- /* An overly simplified uppercasing model for utf-8. */
+ /* An overly simplified uppercasing model for UTF-8. */
if (p[0] < 0xe0) {
p[1] ^= 32;
return 2;
« no previous file with comments | « third_party/brotli/dec/state.c ('k') | third_party/brotli/dec/types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698