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

Unified Diff: extensions/browser/api/system_display/display_info_provider.h

Issue 1549643002: Switch to standard integer types in extensions/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clean
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: extensions/browser/api/system_display/display_info_provider.h
diff --git a/extensions/browser/api/system_display/display_info_provider.h b/extensions/browser/api/system_display/display_info_provider.h
index 48b87321fe04f00d40f89b33a6eeae6f45d6d6c5..e2fee24303d7015c4e55b162d22ab82b6d5203d8 100644
--- a/extensions/browser/api/system_display/display_info_provider.h
+++ b/extensions/browser/api/system_display/display_info_provider.h
@@ -5,6 +5,8 @@
#ifndef EXTENSIONS_BROWSER_API_SYSTEM_DISPLAY_DISPLAY_INFO_PROVIDER_H_
#define EXTENSIONS_BROWSER_API_SYSTEM_DISPLAY_DISPLAY_INFO_PROVIDER_H_
+#include <stdint.h>
+
#include <string>
#include <vector>
@@ -64,7 +66,7 @@ class DisplayInfoProvider {
// GetAllDisplaysInfo()
static api::system_display::DisplayUnitInfo* CreateDisplayUnitInfo(
const gfx::Display& display,
- int64 primary_display_id);
+ int64_t primary_display_id);
private:
static DisplayInfoProvider* Create();

Powered by Google App Engine
This is Rietveld 408576698