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

Side by Side Diff: ui/accessibility/platform/ax_platform_node_auralinux.cc

Issue 2000403003: [forbots] IWYU for ax_enums.h Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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/accessibility/platform/ax_platform_node_auralinux.h" 5 #include "ui/accessibility/platform/ax_platform_node_auralinux.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/strings/sys_string_conversions.h" 10 #include "base/strings/sys_string_conversions.h"
11 #include "base/task_runner.h" 11 #include "base/task_runner.h"
12 #include "ui/accessibility/ax_enums.h"
12 #include "ui/accessibility/ax_node_data.h" 13 #include "ui/accessibility/ax_node_data.h"
13 #include "ui/accessibility/platform/atk_util_auralinux.h" 14 #include "ui/accessibility/platform/atk_util_auralinux.h"
14 #include "ui/accessibility/platform/ax_platform_node_delegate.h" 15 #include "ui/accessibility/platform/ax_platform_node_delegate.h"
15 16
16 // 17 //
17 // ax_platform_node_auralinux AtkObject definition and implementation. 18 // ax_platform_node_auralinux AtkObject definition and implementation.
18 // 19 //
19 20
20 G_BEGIN_DECLS 21 G_BEGIN_DECLS
21 22
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after
529 530
530 void AXPlatformNodeAuraLinux::GetSize(gint* width, gint* height) { 531 void AXPlatformNodeAuraLinux::GetSize(gint* width, gint* height) {
531 gfx::Rect rect_size = GetData().location; 532 gfx::Rect rect_size = GetData().location;
532 if (width) 533 if (width)
533 *width = rect_size.width(); 534 *width = rect_size.width();
534 if (height) 535 if (height)
535 *height = rect_size.height(); 536 *height = rect_size.height();
536 } 537 }
537 538
538 } // namespace ui 539 } // namespace ui
OLDNEW
« no previous file with comments | « ui/accessibility/platform/ax_platform_node.h ('k') | ui/accessibility/platform/ax_platform_node_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698