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

Unified Diff: content/browser/accessibility/accessibility_event_recorder.cc

Issue 790943002: Add DumpAccessibilityEvents test framework. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dump_acc_events_1
Patch Set: Fix compile errors Created 6 years 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/accessibility/accessibility_event_recorder.cc
diff --git a/content/browser/accessibility/accessibility_event_recorder.cc b/content/browser/accessibility/accessibility_event_recorder.cc
new file mode 100644
index 0000000000000000000000000000000000000000..93ce9b48b1b709e983d9666c05abee4cc886930b
--- /dev/null
+++ b/content/browser/accessibility/accessibility_event_recorder.cc
@@ -0,0 +1,26 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "base/port.h"
+#include "content/browser/accessibility/accessibility_event_recorder.h"
+
+namespace content {
+
+AccessibilityEventRecorder::AccessibilityEventRecorder(
+ BrowserAccessibilityManager* manager)
+ : manager_(manager) {
+}
+
+AccessibilityEventRecorder::~AccessibilityEventRecorder() {
+}
+
+#if !defined(OS_WIN)
+// static
+AccessibilityEventRecorder* AccessibilityEventRecorder::Create(
+ BrowserAccessibilityManager* manager) {
+ return new AccessibilityEventRecorder(manager);
+}
+#endif
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698