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

Side by Side Diff: chrome/browser/ui/views/bookmarks/bookmark_editor_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
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 CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_EDITOR_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_EDITOR_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_EDITOR_VIEW_H_ 6 #define CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_EDITOR_VIEW_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 base::string16 GetDialogButtonLabel(ui::DialogButton button) const override; 84 base::string16 GetDialogButtonLabel(ui::DialogButton button) const override;
85 bool IsDialogButtonEnabled(ui::DialogButton button) const override; 85 bool IsDialogButtonEnabled(ui::DialogButton button) const override;
86 views::View* CreateExtraView() override; 86 views::View* CreateExtraView() override;
87 ui::ModalType GetModalType() const override; 87 ui::ModalType GetModalType() const override;
88 bool CanResize() const override; 88 bool CanResize() const override;
89 base::string16 GetWindowTitle() const override; 89 base::string16 GetWindowTitle() const override;
90 bool Accept() override; 90 bool Accept() override;
91 91
92 // views::View: 92 // views::View:
93 gfx::Size GetPreferredSize() const override; 93 gfx::Size GetPreferredSize() const override;
94 void GetAccessibleState(ui::AXViewState* state) override; 94 void GetAccessibleNodeData(ui::AXNodeData* node_data) override;
95 95
96 // views::TreeViewController: 96 // views::TreeViewController:
97 void OnTreeViewSelectionChanged(views::TreeView* tree_view) override; 97 void OnTreeViewSelectionChanged(views::TreeView* tree_view) override;
98 bool CanEdit(views::TreeView* tree_view, ui::TreeModelNode* node) override; 98 bool CanEdit(views::TreeView* tree_view, ui::TreeModelNode* node) override;
99 99
100 // views::TextfieldController: 100 // views::TextfieldController:
101 void ContentsChanged(views::Textfield* sender, 101 void ContentsChanged(views::Textfield* sender,
102 const base::string16& new_contents) override; 102 const base::string16& new_contents) override;
103 bool HandleKeyEvent(views::Textfield* sender, 103 bool HandleKeyEvent(views::Textfield* sender,
104 const ui::KeyEvent& key_event) override; 104 const ui::KeyEvent& key_event) override;
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 // Is the tree shown? 270 // Is the tree shown?
271 bool show_tree_; 271 bool show_tree_;
272 272
273 // List of deleted bookmark folders. 273 // List of deleted bookmark folders.
274 std::vector<int64_t> deletes_; 274 std::vector<int64_t> deletes_;
275 275
276 DISALLOW_COPY_AND_ASSIGN(BookmarkEditorView); 276 DISALLOW_COPY_AND_ASSIGN(BookmarkEditorView);
277 }; 277 };
278 278
279 #endif // CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_EDITOR_VIEW_H_ 279 #endif // CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_EDITOR_VIEW_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/bookmarks/bookmark_bubble_view.cc ('k') | chrome/browser/ui/views/bookmarks/bookmark_editor_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698