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

Unified Diff: third_party/woff2/src/woff2_enc.h

Issue 1873123002: Update woff2 to 4e698b8 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: assert.h Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: third_party/woff2/src/woff2_enc.h
diff --git a/third_party/woff2/src/woff2_enc.h b/third_party/woff2/src/woff2_enc.h
index a1caf3fd65412956876f2421d4b346e6c5ac737f..3ac8c3ab1bde5780265d6735925269973411b11d 100644
--- a/third_party/woff2/src/woff2_enc.h
+++ b/third_party/woff2/src/woff2_enc.h
@@ -27,10 +27,12 @@ using std::string;
namespace woff2 {
struct WOFF2Params {
- WOFF2Params() : extended_metadata(""), brotli_quality(11) {}
+ WOFF2Params() : extended_metadata(""), brotli_quality(11),
+ allow_transforms(true) {}
string extended_metadata;
int brotli_quality;
+ bool allow_transforms;
};
// Returns an upper bound on the size of the compressed file.

Powered by Google App Engine
This is Rietveld 408576698