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

Unified Diff: third_party/WebKit/Source/platform/text/CharacterPropertyDataGenerator.cpp

Issue 2329463004: ABANDONED CL: Changes needed to make things compile after running rewrite_to_chrome_style tool. (Closed)
Patch Set: More fixes - things build fine at this point. Created 3 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/WebKit/Source/platform/text/CharacterPropertyDataGenerator.cpp
diff --git a/third_party/WebKit/Source/platform/text/CharacterPropertyDataGenerator.cpp b/third_party/WebKit/Source/platform/text/CharacterPropertyDataGenerator.cpp
index d822a146be9626d9a17fb351d4baf62f2c1a7a58..49826e4e0f668d2a9c5d2ea86d9c720220f0e872 100644
--- a/third_party/WebKit/Source/platform/text/CharacterPropertyDataGenerator.cpp
+++ b/third_party/WebKit/Source/platform/text/CharacterPropertyDataGenerator.cpp
@@ -54,8 +54,8 @@ static void generateUTrieSerialized(FILE* fp, int32_t size, uint8_t* array) {
fprintf(fp,
"#include <cstdint>\n\n"
"namespace blink {\n\n"
- "extern const int32_t serializedCharacterDataSize = %d;\n"
- "extern const uint8_t serializedCharacterData[] = {",
+ "extern const int32_t kSerializedCharacterDataSize = %d;\n"
+ "extern const uint8_t kSerializedCharacterData[] = {",
size);
for (int32_t i = 0; i < size;) {
fprintf(fp, "\n ");

Powered by Google App Engine
This is Rietveld 408576698