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

Unified Diff: ui/display/chromeos/native_display_delegate.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 | « no previous file | ui/display/chromeos/output_configurator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/display/chromeos/native_display_delegate.h
diff --git a/ui/display/chromeos/native_display_delegate.h b/ui/display/chromeos/native_display_delegate.h
index 5d961421edcfac63d56dadb040f40b5b3df7ee09..8322ecf0ead7cf732837bb53dece014175705ffd 100644
--- a/ui/display/chromeos/native_display_delegate.h
+++ b/ui/display/chromeos/native_display_delegate.h
@@ -5,6 +5,8 @@
#ifndef UI_DISPLAY_CHROMEOS_NATIVE_DISPLAY_DELEGATE_H_
#define UI_DISPLAY_CHROMEOS_NATIVE_DISPLAY_DELEGATE_H_
+#include <stdint.h>
+
#include <vector>
#include "ui/display/display_constants.h"
@@ -40,7 +42,7 @@ class DISPLAY_EXPORT NativeDisplayDelegate {
virtual void SyncWithServer() = 0;
// Sets the window's background color to |color_argb|.
- virtual void SetBackgroundColor(uint32 color_argb) = 0;
+ virtual void SetBackgroundColor(uint32_t color_argb) = 0;
// Enables DPMS and forces it to the "on" state.
virtual void ForceDPMSOn() = 0;
« no previous file with comments | « no previous file | ui/display/chromeos/output_configurator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698