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

Unified Diff: fpdfsdk/javascript/app.cpp

Issue 2343693002: Replace FX_UINT with unsigned int (Closed)
Patch Set: Remove include Created 4 years, 3 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/javascript/app.cpp
diff --git a/fpdfsdk/javascript/app.cpp b/fpdfsdk/javascript/app.cpp
index 6e5dc4a2c78b03cc49c9311fd2ec4e0f418b9ad3..1c7aa9c50a5b3c9820faed80b8c9325e6b7d68f4 100644
--- a/fpdfsdk/javascript/app.cpp
+++ b/fpdfsdk/javascript/app.cpp
@@ -43,7 +43,7 @@ class GlobalTimer {
CFX_WideString GetJScript() const { return m_swJScript; }
private:
- using TimerMap = std::map<FX_UINT, GlobalTimer*>;
+ using TimerMap = std::map<unsigned int, GlobalTimer*>;
Tom Sepez 2016/09/15 16:42:16 can we make all of these uint32_t's?
dsinclair 2016/09/15 17:38:32 Done.
static TimerMap* GetGlobalTimerMap();
uint32_t m_nTimerID;

Powered by Google App Engine
This is Rietveld 408576698