Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
ax_mode_observer.h
Go to the documentation of this file.
1// Copyright 2017 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef UI_ACCESSIBILITY_AX_MODE_OBSERVER_H_
6#define UI_ACCESSIBILITY_AX_MODE_OBSERVER_H_
7
8#include "ax_export.h"
9#include "ax_mode.h"
10
11namespace ui {
12
14 public:
15 virtual ~AXModeObserver() {}
16
17 // Notifies when accessibility mode changes.
18 virtual void OnAXModeAdded(ui::AXMode mode) = 0;
19};
20
21} // namespace ui
22
23#endif // UI_ACCESSIBILITY_AX_MODE_OBSERVER_H_
#define AX_EXPORT
Definition ax_export.h:29
virtual void OnAXModeAdded(ui::AXMode mode)=0