| 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);
|
|
|