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

Side by Side Diff: content/browser/accessibility/browser_accessibility_event_win.h

Issue 1925473002: Add verbose logging for native accessibility events. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@load_complete
Patch Set: address all feedback Created 4 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
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_EVENT_WIN_H_
6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_EVENT_WIN_H_
7
8 #include <oleacc.h>
9
10 #include "content/browser/accessibility/browser_accessibility_event.h"
11
12 namespace content {
13
14 class CONTENT_EXPORT BrowserAccessibilityEventWin
15 : public BrowserAccessibilityEvent {
16 public:
17 BrowserAccessibilityEventWin(Source source,
18 ui::AXEvent event_type,
19 LONG win_event_type,
20 const BrowserAccessibility* target);
21 ~BrowserAccessibilityEventWin() override;
22
23 LONG win_event_type() { return win_event_type_; }
24
25 Result Fire() override;
26
27 protected:
28 std::string GetEventNameStr() override;
29
30 LONG win_event_type_;
31
32 private:
33 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityEventWin);
34 };
35
36 } // namespace content
37
38 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_EVENT_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698