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

Unified Diff: chrome/browser/resources/chromeos/chromevox/host/testing/host.js

Issue 298653011: More ChromeVox tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix style violations Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/chromevox/host/testing/host.js
diff --git a/chrome/browser/resources/chromeos/chromevox/host/testing/host.js b/chrome/browser/resources/chromeos/chromevox/host/testing/host.js
new file mode 100644
index 0000000000000000000000000000000000000000..aa09936319873c7184063ed48e4fb9342c37e4e9
--- /dev/null
+++ b/chrome/browser/resources/chromeos/chromevox/host/testing/host.js
@@ -0,0 +1,25 @@
+// Copyright 2013 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.
+
+/**
+ * @fileoverview Dummy implementation of host.js for testing.
+ *
+ */
+
+goog.provide('cvox.TestHost');
+
+goog.require('cvox.AbstractHost');
+goog.require('cvox.HostFactory');
+
+/**
+ * @constructor
+ * @extends {cvox.AbstractHost}
+ */
+cvox.TestHost = function() {
+ cvox.AbstractHost.call(this);
+};
+goog.inherits(cvox.TestHost, cvox.AbstractHost);
+
+/** @override */
+cvox.HostFactory.hostConstructor = cvox.TestHost;

Powered by Google App Engine
This is Rietveld 408576698