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

Unified Diff: ui/views/controls/message_box_view.h

Issue 1543173002: Switch to standard integer types in ui/views/. (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: ui/views/controls/message_box_view.h
diff --git a/ui/views/controls/message_box_view.h b/ui/views/controls/message_box_view.h
index 2bb43316137a601affb3cfc4746737a7dc836353..2d83532c8989d37d3ebbff900a60dc7782d20766 100644
--- a/ui/views/controls/message_box_view.h
+++ b/ui/views/controls/message_box_view.h
@@ -5,8 +5,11 @@
#ifndef UI_VIEWS_CONTROLS_MESSAGE_BOX_VIEW_H_
#define UI_VIEWS_CONTROLS_MESSAGE_BOX_VIEW_H_
+#include <stdint.h>
+
#include <vector>
+#include "base/macros.h"
#include "base/strings/string16.h"
#include "ui/views/view.h"
@@ -43,7 +46,7 @@ class VIEWS_EXPORT MessageBoxView : public View {
explicit InitParams(const base::string16& message);
~InitParams();
- uint16 options;
+ uint16_t options;
base::string16 message;
base::string16 default_prompt;
int message_width;

Powered by Google App Engine
This is Rietveld 408576698