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

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: 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..1cb6a11e59659745f481eabf4afb06716f933821
--- /dev/null
+++ b/content/browser/accessibility/accessibility_event_recorder.cc
@@ -0,0 +1,25 @@
+// Copyright (c) 2014 The Chromium Authors. All rights reserved.
David Tseng 2014/12/16 16:53:04 nit: I been dinged on this one too: no (c)
dmazzoni 2014/12/16 23:26:31 Done.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#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