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

Unified Diff: ash/display/display_layout_store.cc

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/display/display_layout_store.h ('k') | ash/display/display_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/display/display_layout_store.cc
diff --git a/ash/display/display_layout_store.cc b/ash/display/display_layout_store.cc
index c002e04e8f79769c6c6ac79ad2fbd8861dcd5748..aacbf623c14da7371e059b13b438822f49caa367 100644
--- a/ash/display/display_layout_store.cc
+++ b/ash/display/display_layout_store.cc
@@ -46,8 +46,8 @@ void DisplayLayoutStore::SetDefaultDisplayLayout(const DisplayLayout& layout) {
}
void DisplayLayoutStore::RegisterLayoutForDisplayIdPair(
- int64 id1,
- int64 id2,
+ int64_t id1,
+ int64_t id2,
const DisplayLayout& layout) {
auto key = CreateDisplayIdPair(id1, id2);
paired_layouts_[key] = layout;
@@ -81,7 +81,7 @@ void DisplayLayoutStore::UpdateMultiDisplayState(const DisplayIdPair& pair,
}
void DisplayLayoutStore::UpdatePrimaryDisplayId(const DisplayIdPair& pair,
- int64 display_id) {
+ int64_t display_id) {
if (paired_layouts_.find(pair) == paired_layouts_.end())
CreateDisplayLayout(pair);
paired_layouts_[pair].primary_id = display_id;
« no previous file with comments | « ash/display/display_layout_store.h ('k') | ash/display/display_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698