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

Unified Diff: ui/display/x11/edid_parser_x11.h

Issue 215233002: Update ui/display to use primitive types as defined in stdint.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 6 years, 9 months 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 | « ui/display/edid_parser_unittest.cc ('k') | ui/display/x11/edid_parser_x11.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/display/x11/edid_parser_x11.h
diff --git a/ui/display/x11/edid_parser_x11.h b/ui/display/x11/edid_parser_x11.h
index 9fa12013691318442420a786098523222cea4f5d..951dd2f9b36db67c64db9d4fa90b2c3a6a436699 100644
--- a/ui/display/x11/edid_parser_x11.h
+++ b/ui/display/x11/edid_parser_x11.h
@@ -5,9 +5,10 @@
#ifndef UI_DISPLAY_X11_EDID_PARSER_X11_H_
#define UI_DISPLAY_X11_EDID_PARSER_X11_H_
+#include <stdint.h>
+
#include <string>
-#include "base/basictypes.h"
#include "ui/display/display_constants.h"
#include "ui/display/display_export.h"
@@ -21,8 +22,8 @@ namespace ui {
// Gets the EDID data from |output| and generates the display id through
// |GetDisplayIdFromEDID|.
DISPLAY_EXPORT bool GetDisplayId(XID output,
- uint8 index,
- int64* display_id_out);
+ uint8_t index,
+ int64_t* display_id_out);
// Generate the human readable string from EDID obtained from |output|.
DISPLAY_EXPORT std::string GetDisplayName(RROutput output);
« no previous file with comments | « ui/display/edid_parser_unittest.cc ('k') | ui/display/x11/edid_parser_x11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698