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

Unified Diff: ui/views/widget/desktop_aura/desktop_screen_x11_unittest.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/widget/desktop_aura/desktop_screen_x11_unittest.cc
diff --git a/ui/views/widget/desktop_aura/desktop_screen_x11_unittest.cc b/ui/views/widget/desktop_aura/desktop_screen_x11_unittest.cc
index 466bb79d393a30bea621ac07c86aa48b31be8661..c527545c4b0c6ea4b26130d7c12ddaaf9338c282 100644
--- a/ui/views/widget/desktop_aura/desktop_screen_x11_unittest.cc
+++ b/ui/views/widget/desktop_aura/desktop_screen_x11_unittest.cc
@@ -4,6 +4,9 @@
#include "ui/views/widget/desktop_aura/desktop_screen_x11.h"
+#include <stdint.h>
+
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/aura/client/aura_constants.h"
@@ -48,8 +51,8 @@ class TestDesktopNativeWidgetAura : public views::DesktopNativeWidgetAura {
namespace views {
-const int64 kFirstDisplay = 5321829;
-const int64 kSecondDisplay = 928310;
+const int64_t kFirstDisplay = 5321829;
+const int64_t kSecondDisplay = 928310;
class DesktopScreenX11Test : public views::ViewsTestBase,
public gfx::DisplayObserver {

Powered by Google App Engine
This is Rietveld 408576698