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..1727523f1e0f13bc1bd59806d02279a5ce64547c |
--- /dev/null |
+++ b/chrome/browser/resources/chromeos/chromevox/host/testing/host.js |
@@ -0,0 +1,24 @@ |
+// 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); |
+ |
+cvox.HostFactory.hostConstructor = cvox.TestHost; |