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

Side by Side Diff: content/browser/accessibility/browser_accessibility_manager_auralinux.cc

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
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2015 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 #include "content/browser/accessibility/browser_accessibility_manager_auralinux. h" 5 #include "content/browser/accessibility/browser_accessibility_manager_auralinux. h"
6 6
7 #include "content/browser/accessibility/browser_accessibility_auralinux.h" 7 #include "content/browser/accessibility/browser_accessibility_auralinux.h"
8 #include "content/common/accessibility_messages.h" 8 #include "content/common/accessibility_messages.h"
9 9
10 namespace content { 10 namespace content {
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 empty_document.id = 0; 43 empty_document.id = 0;
44 empty_document.role = ui::AX_ROLE_ROOT_WEB_AREA; 44 empty_document.role = ui::AX_ROLE_ROOT_WEB_AREA;
45 empty_document.state = 1 << ui::AX_STATE_READ_ONLY; 45 empty_document.state = 1 << ui::AX_STATE_READ_ONLY;
46 ui::AXTreeUpdate update; 46 ui::AXTreeUpdate update;
47 update.root_id = empty_document.id; 47 update.root_id = empty_document.id;
48 update.nodes.push_back(empty_document); 48 update.nodes.push_back(empty_document);
49 return update; 49 return update;
50 } 50 }
51 51
52 void BrowserAccessibilityManagerAuraLinux::NotifyAccessibilityEvent( 52 void BrowserAccessibilityManagerAuraLinux::NotifyAccessibilityEvent(
53 BrowserAccessibilityEvent::Source source,
53 ui::AXEvent event_type, 54 ui::AXEvent event_type,
54 BrowserAccessibility* node) { 55 BrowserAccessibility* node) {
55 // TODO(shreeram.k) : Implement. 56 // TODO(shreeram.k) : Implement.
56 } 57 }
57 58
58 } // namespace content 59 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698