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

Unified Diff: ui/views/controls/menu/menu_runner_impl.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/menu/menu_runner_impl.h
diff --git a/ui/views/controls/menu/menu_runner_impl.h b/ui/views/controls/menu/menu_runner_impl.h
index f68b98746b504795275fccab812ae343c036d979..cf31f8156e626fc4e489bf748aceb990a8da3b0c 100644
--- a/ui/views/controls/menu/menu_runner_impl.h
+++ b/ui/views/controls/menu/menu_runner_impl.h
@@ -7,8 +7,11 @@
#include "ui/views/controls/menu/menu_runner_impl_interface.h"
+#include <stdint.h>
+
#include <set>
+#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "base/time/time.h"
#include "ui/views/controls/menu/menu_controller_delegate.h"
@@ -33,7 +36,7 @@ class MenuRunnerImpl : public MenuRunnerImplInterface,
MenuButton* button,
const gfx::Rect& bounds,
MenuAnchorPosition anchor,
- int32 run_types) override;
+ int32_t run_types) override;
void Cancel() override;
base::TimeDelta GetClosingEventTime() const override;

Powered by Google App Engine
This is Rietveld 408576698