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

Unified Diff: ui/gfx/display_change_notifier.cc

Issue 1543183002: Switch to standard integer types in ui/gfx/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 | « ui/gfx/display_change_notifier.h ('k') | ui/gfx/display_change_notifier_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/display_change_notifier.cc
diff --git a/ui/gfx/display_change_notifier.cc b/ui/gfx/display_change_notifier.cc
index 380c32ca9c3defa97f8c0992e815d88bf3256c5d..b8cf54d08fea1ca80048c009afec847f5edf4e57 100644
--- a/ui/gfx/display_change_notifier.cc
+++ b/ui/gfx/display_change_notifier.cc
@@ -4,6 +4,8 @@
#include "ui/gfx/display_change_notifier.h"
+#include <stdint.h>
+
#include "ui/gfx/display.h"
#include "ui/gfx/display_observer.h"
@@ -22,7 +24,7 @@ class DisplayComparator {
}
private:
- int64 display_id_;
+ int64_t display_id_;
};
} // anonymous namespace
« no previous file with comments | « ui/gfx/display_change_notifier.h ('k') | ui/gfx/display_change_notifier_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698