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

Side by Side Diff: ui/views/accessibility/native_view_accessibility_auralinux.cc

Issue 1543173002: Switch to standard integer types in ui/views/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/views/accessibility/native_view_accessibility_auralinux.h" 5 #include "ui/views/accessibility/native_view_accessibility_auralinux.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/macros.h"
10 #include "base/memory/singleton.h" 11 #include "base/memory/singleton.h"
11 #include "base/stl_util.h" 12 #include "base/stl_util.h"
12 #include "ui/accessibility/ax_enums.h" 13 #include "ui/accessibility/ax_enums.h"
13 #include "ui/accessibility/ax_node_data.h" 14 #include "ui/accessibility/ax_node_data.h"
14 #include "ui/accessibility/platform/ax_platform_node_auralinux.h" 15 #include "ui/accessibility/platform/ax_platform_node_auralinux.h"
15 #include "ui/accessibility/platform/ax_platform_node_delegate.h" 16 #include "ui/accessibility/platform/ax_platform_node_delegate.h"
16 #include "ui/gfx/native_widget_types.h" 17 #include "ui/gfx/native_widget_types.h"
17 #include "ui/views/views_delegate.h" 18 #include "ui/views/views_delegate.h"
18 #include "ui/views/widget/widget.h" 19 #include "ui/views/widget/widget.h"
19 #include "ui/views/widget/widget_observer.h" 20 #include "ui/views/widget/widget_observer.h"
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 } 165 }
165 166
166 gfx::NativeViewAccessible NativeViewAccessibilityAuraLinux::GetParent() { 167 gfx::NativeViewAccessible NativeViewAccessibilityAuraLinux::GetParent() {
167 gfx::NativeViewAccessible parent = NativeViewAccessibility::GetParent(); 168 gfx::NativeViewAccessible parent = NativeViewAccessibility::GetParent();
168 if (!parent) 169 if (!parent)
169 parent = AuraLinuxApplication::GetInstance()->GetNativeViewAccessible(); 170 parent = AuraLinuxApplication::GetInstance()->GetNativeViewAccessible();
170 return parent; 171 return parent;
171 } 172 }
172 173
173 } // namespace views 174 } // namespace views
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698