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

Side by Side Diff: ui/views/window/client_view.h

Issue 2477463003: Replace ui::AXViewState with AXNodeData and AXActionData (Closed)
Patch Set: Fix test Created 4 years, 1 month 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
« no previous file with comments | « ui/views/widget/root_view.cc ('k') | ui/views/window/client_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_WINDOW_CLIENT_VIEW_H_ 5 #ifndef UI_VIEWS_WINDOW_CLIENT_VIEW_H_
6 #define UI_VIEWS_WINDOW_CLIENT_VIEW_H_ 6 #define UI_VIEWS_WINDOW_CLIENT_VIEW_H_
7 7
8 #include "ui/views/view.h" 8 #include "ui/views/view.h"
9 9
10 namespace views { 10 namespace views {
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 58
59 // Overridden from View: 59 // Overridden from View:
60 gfx::Size GetPreferredSize() const override; 60 gfx::Size GetPreferredSize() const override;
61 gfx::Size GetMinimumSize() const override; 61 gfx::Size GetMinimumSize() const override;
62 gfx::Size GetMaximumSize() const override; 62 gfx::Size GetMaximumSize() const override;
63 void Layout() override; 63 void Layout() override;
64 const char* GetClassName() const override; 64 const char* GetClassName() const override;
65 65
66 protected: 66 protected:
67 // Overridden from View: 67 // Overridden from View:
68 void GetAccessibleState(ui::AXViewState* state) override; 68 void GetAccessibleNodeData(ui::AXNodeData* node_data) override;
69 void OnBoundsChanged(const gfx::Rect& previous_bounds) override; 69 void OnBoundsChanged(const gfx::Rect& previous_bounds) override;
70 void ViewHierarchyChanged( 70 void ViewHierarchyChanged(
71 const ViewHierarchyChangedDetails& details) override; 71 const ViewHierarchyChangedDetails& details) override;
72 72
73 // Accessors for private data members. 73 // Accessors for private data members.
74 View* contents_view() const { return contents_view_; } 74 View* contents_view() const { return contents_view_; }
75 void set_contents_view(View* contents_view) { 75 void set_contents_view(View* contents_view) {
76 contents_view_ = contents_view; 76 contents_view_ = contents_view;
77 } 77 }
78 78
79 private: 79 private:
80 // The View that this ClientView contains. 80 // The View that this ClientView contains.
81 View* contents_view_; 81 View* contents_view_;
82 }; 82 };
83 83
84 } // namespace views 84 } // namespace views
85 85
86 #endif // UI_VIEWS_WINDOW_CLIENT_VIEW_H_ 86 #endif // UI_VIEWS_WINDOW_CLIENT_VIEW_H_
OLDNEW
« no previous file with comments | « ui/views/widget/root_view.cc ('k') | ui/views/window/client_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698