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

Unified Diff: ash/display/display_layout_store.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/display/display_layout.cc ('k') | ash/display/display_layout_store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/display/display_layout_store.h
diff --git a/ash/display/display_layout_store.h b/ash/display/display_layout_store.h
index 6841ea906aa5f8057d0f6b408be2cde03a1a49d1..7519ec4c16705a6ada6c2e434f7030c029918f03 100644
--- a/ash/display/display_layout_store.h
+++ b/ash/display/display_layout_store.h
@@ -5,10 +5,13 @@
#ifndef ASH_DISPLAY_DISPLAY_LAYOUT_STORE_H_
#define ASH_DISPLAY_DISPLAY_LAYOUT_STORE_H_
+#include <stdint.h>
+
#include <map>
#include "ash/ash_export.h"
#include "ash/display/display_layout.h"
+#include "base/macros.h"
namespace ash {
@@ -23,8 +26,8 @@ class ASH_EXPORT DisplayLayoutStore {
void SetDefaultDisplayLayout(const DisplayLayout& layout);
// Registeres the display layout info for the specified display(s).
- void RegisterLayoutForDisplayIdPair(int64 id1,
- int64 id2,
+ void RegisterLayoutForDisplayIdPair(int64_t id1,
+ int64_t id2,
const DisplayLayout& layout);
// If no layout is registered, it creatas new layout using
@@ -48,7 +51,7 @@ class ASH_EXPORT DisplayLayoutStore {
// |display_pair|. This creates new display layout if no layout is
// registered for |display_pair|.
void UpdatePrimaryDisplayId(const DisplayIdPair& display_pair,
- int64 display_id);
+ int64_t display_id);
private:
// Creates new layout for display pair from |default_display_layout_|.
« no previous file with comments | « ash/display/display_layout.cc ('k') | ash/display/display_layout_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698