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

Unified Diff: ash/root_window_settings.h

Issue 1540753002: Switch to standard integer types in ash/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: arraysize 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 | « ash/root_window_controller.h ('k') | ash/rotator/screen_rotation_animation.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/root_window_settings.h
diff --git a/ash/root_window_settings.h b/ash/root_window_settings.h
index dc6764738b72e09e9fb4101084f7a1d90edeaed2..84abc3fb247d3e567d180feb153ee23400282506 100644
--- a/ash/root_window_settings.h
+++ b/ash/root_window_settings.h
@@ -5,8 +5,9 @@
#ifndef ASH_ROOT_WINDOW_SETTINGS_H_
#define ASH_ROOT_WINDOW_SETTINGS_H_
+#include <stdint.h>
+
#include "ash/ash_export.h"
-#include "base/basictypes.h"
namespace aura {
class Window;
@@ -23,7 +24,7 @@ struct RootWindowSettings {
RootWindowSettings();
// ID of the display associated with the root window.
- int64 display_id;
+ int64_t display_id;
// RootWindowController for the root window. This may be NULL
// for the root window used for mirroring.
« no previous file with comments | « ash/root_window_controller.h ('k') | ash/rotator/screen_rotation_animation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698