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

Unified Diff: ui/views/accessibility/ax_view_obj_wrapper.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/accessibility/ax_view_obj_wrapper.h
diff --git a/ui/views/accessibility/ax_view_obj_wrapper.h b/ui/views/accessibility/ax_view_obj_wrapper.h
index 39cbc6536cdcefbc809325359fe53e652d88d348..89683cc75ed1fb5674d5ac71c1117b5083dc9d41 100644
--- a/ui/views/accessibility/ax_view_obj_wrapper.h
+++ b/ui/views/accessibility/ax_view_obj_wrapper.h
@@ -5,6 +5,9 @@
#ifndef UI_VIEWS_ACCESSIBILITY_AX_VIEW_OBJ_WRAPPER_H_
#define UI_VIEWS_ACCESSIBILITY_AX_VIEW_OBJ_WRAPPER_H_
+#include <stdint.h>
+
+#include "base/macros.h"
#include "ui/views/accessibility/ax_aura_obj_wrapper.h"
namespace views {
@@ -22,11 +25,11 @@ class AXViewObjWrapper : public AXAuraObjWrapper {
AXAuraObjWrapper* GetParent() override;
void GetChildren(std::vector<AXAuraObjWrapper*>* out_children) override;
void Serialize(ui::AXNodeData* out_node_data) override;
- int32 GetID() override;
+ int32_t GetID() override;
void DoDefault() override;
void Focus() override;
void MakeVisible() override;
- void SetSelection(int32 start, int32 end) override;
+ void SetSelection(int32_t start, int32_t end) override;
void ShowContextMenu() override;
private:

Powered by Google App Engine
This is Rietveld 408576698