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

Unified Diff: ui/views/view.cc

Issue 2746813002: Hide AXPlatformNode on ChromeOS. (Closed)
Patch Set: fix stub Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
« ui/views/controls/tabbed_pane/tabbed_pane_unittest.cc ('K') | « ui/views/view.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/view.cc
diff --git a/ui/views/view.cc b/ui/views/view.cc
index 359ef565fd88ae041f2769b70f6fc87f3360237d..70f2970cd7c16ff1bbf394c7e3e6c0bf16380ac1 100644
--- a/ui/views/view.cc
+++ b/ui/views/view.cc
@@ -45,7 +45,7 @@
#include "ui/gfx/skia_util.h"
#include "ui/gfx/transform.h"
#include "ui/native_theme/native_theme.h"
-#include "ui/views/accessibility/native_view_accessibility.h"
+#include "ui/views/accessibility/native_view_accessibility_base.h"
#include "ui/views/background.h"
#include "ui/views/border.h"
#include "ui/views/context_menu_controller.h"
@@ -1418,7 +1418,7 @@ bool View::HandleAccessibleAction(const ui::AXActionData& action_data) {
gfx::NativeViewAccessible View::GetNativeViewAccessible() {
if (!native_view_accessibility_)
- native_view_accessibility_ = NativeViewAccessibility::Create(this);
+ native_view_accessibility_ = NativeViewAccessibilityBase::Create(this);
if (native_view_accessibility_)
return native_view_accessibility_->GetNativeObject();
return nullptr;
@@ -1432,7 +1432,7 @@ void View::NotifyAccessibilityEvent(
if (send_native_event && GetWidget()) {
if (!native_view_accessibility_)
- native_view_accessibility_ = NativeViewAccessibility::Create(this);
+ native_view_accessibility_ = NativeViewAccessibilityBase::Create(this);
if (native_view_accessibility_)
native_view_accessibility_->NotifyAccessibilityEvent(event_type);
}
« ui/views/controls/tabbed_pane/tabbed_pane_unittest.cc ('K') | « ui/views/view.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698