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

Unified Diff: chrome/browser/chromeos/display/display_preferences.h

Issue 1547093002: Switch to standard integer types in chrome/browser/chromeos/. (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: chrome/browser/chromeos/display/display_preferences.h
diff --git a/chrome/browser/chromeos/display/display_preferences.h b/chrome/browser/chromeos/display/display_preferences.h
index eb40a2141080f5b5b679b9507c0908f1aa7edb4e..e8cddd78aa28ebcb848f2da0c8121a2729fe3eb6 100644
--- a/chrome/browser/chromeos/display/display_preferences.h
+++ b/chrome/browser/chromeos/display/display_preferences.h
@@ -5,7 +5,8 @@
#ifndef CHROME_BROWSER_CHROMEOS_DISPLAY_DISPLAY_PREFERENCES_H_
#define CHROME_BROWSER_CHROMEOS_DISPLAY_DISPLAY_PREFERENCES_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
#include "third_party/cros_system_api/dbus/service_constants.h"
class PrefRegistrySimple;
@@ -42,8 +43,8 @@ void SetCurrentDisplayLayout(const ash::DisplayLayout& layout);
void LoadDisplayPreferences(bool first_run_after_boot);
// Stores the display layout for given display pairs for tests.
-void StoreDisplayLayoutPrefForTest(int64 id1,
- int64 id2,
+void StoreDisplayLayoutPrefForTest(int64_t id1,
+ int64_t id2,
const ash::DisplayLayout& layout);
// Stores the given |power_state| for tests.

Powered by Google App Engine
This is Rietveld 408576698