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

Side by Side Diff: ui/views/accessibility/ax_window_obj_wrapper.h

Issue 2803823002: Fix Chrome OS virtual keyboard accessibility (Closed)
Patch Set: Check for window_ == window Created 3 years, 7 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef UI_VIEWS_ACCESSIBILITY_AX_WINDOW_OBJ_WRAPPER_H_ 5 #ifndef UI_VIEWS_ACCESSIBILITY_AX_WINDOW_OBJ_WRAPPER_H_
6 #define UI_VIEWS_ACCESSIBILITY_AX_WINDOW_OBJ_WRAPPER_H_ 6 #define UI_VIEWS_ACCESSIBILITY_AX_WINDOW_OBJ_WRAPPER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 25 matching lines...) Expand all
36 void Serialize(ui::AXNodeData* out_node_data) override; 36 void Serialize(ui::AXNodeData* out_node_data) override;
37 int32_t GetID() override; 37 int32_t GetID() override;
38 38
39 // WindowObserver overrides. 39 // WindowObserver overrides.
40 void OnWindowDestroyed(aura::Window* window) override; 40 void OnWindowDestroyed(aura::Window* window) override;
41 void OnWindowDestroying(aura::Window* window) override; 41 void OnWindowDestroying(aura::Window* window) override;
42 void OnWindowHierarchyChanged(const HierarchyChangeParams& params) override; 42 void OnWindowHierarchyChanged(const HierarchyChangeParams& params) override;
43 void OnWindowBoundsChanged(aura::Window* window, 43 void OnWindowBoundsChanged(aura::Window* window,
44 const gfx::Rect& old_bounds, 44 const gfx::Rect& old_bounds,
45 const gfx::Rect& new_bounds) override; 45 const gfx::Rect& new_bounds) override;
46 void OnWindowPropertyChanged(aura::Window* window,
47 const void* key,
48 intptr_t old) override;
46 49
47 private: 50 private:
48 aura::Window* window_; 51 aura::Window* window_;
49 52
50 bool is_alert_; 53 bool is_alert_;
51 54
52 DISALLOW_COPY_AND_ASSIGN(AXWindowObjWrapper); 55 DISALLOW_COPY_AND_ASSIGN(AXWindowObjWrapper);
53 }; 56 };
54 57
55 } // namespace views 58 } // namespace views
56 59
57 #endif // UI_VIEWS_ACCESSIBILITY_AX_WINDOW_OBJ_WRAPPER_H_ 60 #endif // UI_VIEWS_ACCESSIBILITY_AX_WINDOW_OBJ_WRAPPER_H_
OLDNEW
« no previous file with comments | « ui/views/accessibility/ax_aura_obj_cache.cc ('k') | ui/views/accessibility/ax_window_obj_wrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698