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

Side by Side Diff: chrome/browser/ui/ash/accessibility/automation_manager_ash.h

Issue 667713006: Implement automatic load of composed/embedded automation trees (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: Fix UAF Created 6 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 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 CHROME_BROWSER_UI_ASH_ACCESSIBILITY_AUTOMATION_MANAGER_ASH_H_ 5 #ifndef CHROME_BROWSER_UI_ASH_ACCESSIBILITY_AUTOMATION_MANAGER_ASH_H_
6 #define CHROME_BROWSER_UI_ASH_ACCESSIBILITY_AUTOMATION_MANAGER_ASH_H_ 6 #define CHROME_BROWSER_UI_ASH_ACCESSIBILITY_AUTOMATION_MANAGER_ASH_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10
11 #include "chrome/browser/extensions/api/automation_internal/automation_action_ad apter.h" 10 #include "chrome/browser/extensions/api/automation_internal/automation_action_ad apter.h"
12 #include "chrome/browser/ui/ash/accessibility/ax_tree_source_ash.h" 11 #include "chrome/browser/ui/ash/accessibility/ax_tree_source_ash.h"
13 #include "ui/accessibility/ax_tree_serializer.h" 12 #include "ui/accessibility/ax_tree_serializer.h"
14 13
15 template <typename T> struct DefaultSingletonTraits; 14 template <typename T> struct DefaultSingletonTraits;
16 15
17 namespace content { 16 namespace content {
18 class BrowserContext; 17 class BrowserContext;
19 } // namespace content 18 } // namespace content
20 19
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 70
72 // Serializes incremental updates on the currently active tree 71 // Serializes incremental updates on the currently active tree
73 // |current_tree_|. 72 // |current_tree_|.
74 scoped_ptr<ui::AXTreeSerializer<views::AXAuraObjWrapper*> > 73 scoped_ptr<ui::AXTreeSerializer<views::AXAuraObjWrapper*> >
75 current_tree_serializer_; 74 current_tree_serializer_;
76 75
77 DISALLOW_COPY_AND_ASSIGN(AutomationManagerAsh); 76 DISALLOW_COPY_AND_ASSIGN(AutomationManagerAsh);
78 }; 77 };
79 78
80 #endif // CHROME_BROWSER_UI_ASH_ACCESSIBILITY_AUTOMATION_MANAGER_ASH_H_ 79 #endif // CHROME_BROWSER_UI_ASH_ACCESSIBILITY_AUTOMATION_MANAGER_ASH_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698