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

Unified Diff: fpdfsdk/include/javascript/util.h

Issue 1160443004: Fix ALL the include guards. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 5 years, 7 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: fpdfsdk/include/javascript/util.h
diff --git a/fpdfsdk/include/javascript/util.h b/fpdfsdk/include/javascript/util.h
index 7601f7a4e5a2b581eba48ddf6185c3715ea96e80..a0f14769ff12b26ba01919c3019f67d3819ea9c6 100644
--- a/fpdfsdk/include/javascript/util.h
+++ b/fpdfsdk/include/javascript/util.h
@@ -4,8 +4,8 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#ifndef _UTIL_H_
-#define _UTIL_H_
+#ifndef JAVASCRIPT_UTIL_H_
Lei Zhang 2015/05/27 23:18:21 Is util.h too common? Other files in fpdfsdk/inclu
Tom Sepez 2015/05/28 18:19:56 Yeah, these files have terribly common names. I t
+#define JAVASCRIPT_UTIL_H_
#include <string> // For std::wstring.
@@ -46,4 +46,5 @@ public:
};
FX_INT64 FX_atoi64(const char *nptr);
-#endif //_UTIL_H_
+
+#endif // JAVASCRIPT_UTIL_H_

Powered by Google App Engine
This is Rietveld 408576698