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

Side by Side Diff: chrome/browser/ui/views/conflicting_module_view_win.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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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_CONFLICTING_MODULE_VIEW_WIN_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_CONFLICTING_MODULE_VIEW_WIN_H_
6 #define CHROME_BROWSER_UI_VIEWS_CONFLICTING_MODULE_VIEW_WIN_H_ 6 #define CHROME_BROWSER_UI_VIEWS_CONFLICTING_MODULE_VIEW_WIN_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/scoped_observer.h" 9 #include "base/scoped_observer.h"
10 #include "chrome/browser/win/enumerate_modules_model.h" 10 #include "chrome/browser/win/enumerate_modules_model.h"
(...skipping 20 matching lines...) Expand all
31 // Shows the bubble and updates the counter for how often it has been shown. 31 // Shows the bubble and updates the counter for how often it has been shown.
32 void ShowBubble(); 32 void ShowBubble();
33 33
34 // views::BubbleDialogDelegateView implementation: 34 // views::BubbleDialogDelegateView implementation:
35 void OnWidgetClosing(views::Widget* widget) override; 35 void OnWidgetClosing(views::Widget* widget) override;
36 bool Accept() override; 36 bool Accept() override;
37 base::string16 GetDialogButtonLabel(ui::DialogButton button) const override; 37 base::string16 GetDialogButtonLabel(ui::DialogButton button) const override;
38 void Init() override; 38 void Init() override;
39 39
40 // views::View implementation. 40 // views::View implementation.
41 void GetAccessibleState(ui::AXViewState* state) override; 41 void GetAccessibleNodeData(ui::AXNodeData* node_data) override;
42 42
43 // EnumerateModulesModel::Observer: 43 // EnumerateModulesModel::Observer:
44 void OnConflictsAcknowledged() override; 44 void OnConflictsAcknowledged() override;
45 45
46 Browser* browser_; 46 Browser* browser_;
47 47
48 ScopedObserver<EnumerateModulesModel, 48 ScopedObserver<EnumerateModulesModel,
49 EnumerateModulesModel::Observer> observer_; 49 EnumerateModulesModel::Observer> observer_;
50 50
51 // The link to the help center for this conflict. 51 // The link to the help center for this conflict.
52 GURL help_center_url_; 52 GURL help_center_url_;
53 53
54 DISALLOW_COPY_AND_ASSIGN(ConflictingModuleView); 54 DISALLOW_COPY_AND_ASSIGN(ConflictingModuleView);
55 }; 55 };
56 56
57 #endif // CHROME_BROWSER_UI_VIEWS_CONFLICTING_MODULE_VIEW_WIN_H_ 57 #endif // CHROME_BROWSER_UI_VIEWS_CONFLICTING_MODULE_VIEW_WIN_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/bookmarks/bookmark_editor_view.cc ('k') | chrome/browser/ui/views/conflicting_module_view_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698