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

Unified Diff: ui/views/mus/display_converter.cc

Issue 1543173002: Switch to standard integer types in ui/views/. (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
Index: ui/views/mus/display_converter.cc
diff --git a/ui/views/mus/display_converter.cc b/ui/views/mus/display_converter.cc
index 954aad7c186d4859984d37643bca0badf6dfa2e9..fce58f6a114ef58963cf92c37a666a769adf5044 100644
--- a/ui/views/mus/display_converter.cc
+++ b/ui/views/mus/display_converter.cc
@@ -4,13 +4,15 @@
#include "ui/views/mus/display_converter.h"
+#include <stdint.h>
+
#include "components/mus/public/cpp/window.h"
#include "mojo/converters/geometry/geometry_type_converters.h"
namespace views {
std::vector<gfx::Display> GetDisplaysFromWindow(mus::Window* window) {
- static int64 synthesized_display_id = 2000;
+ static int64_t synthesized_display_id = 2000;
gfx::Display display;
display.set_id(synthesized_display_id++);
display.SetScaleAndBounds(

Powered by Google App Engine
This is Rietveld 408576698