| Index: ash/test/ash_test_views_delegate.cc
|
| diff --git a/ash/test/ash_test_views_delegate.cc b/ash/test/ash_test_views_delegate.cc
|
| index 5f3f72b97075b02ae9e8634d48f36debcbd8accb..256e768a37ad62cfdd94710d72af285c31f0a762 100644
|
| --- a/ash/test/ash_test_views_delegate.cc
|
| +++ b/ash/test/ash_test_views_delegate.cc
|
| @@ -2,6 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include "ash/test/ash_test_helper.h"
|
| #include "ash/test/ash_test_views_delegate.h"
|
|
|
| #include "ash/shell.h"
|
| @@ -24,5 +25,15 @@ void AshTestViewsDelegate::OnBeforeWidgetInit(
|
| }
|
| }
|
|
|
| +void AshTestViewsDelegate::NotifyAccessibilityEvent(views::View* view,
|
| + ui::AXEvent event_type) {
|
| + TestViewsDelegate::NotifyAccessibilityEvent(view, event_type);
|
| +
|
| + if (test_accessibility_event_delegate_) {
|
| + test_accessibility_event_delegate_->NotifyAccessibilityEvent(view,
|
| + event_type);
|
| + }
|
| +}
|
| +
|
| } // namespace test
|
| } // namespace ash
|
|
|