| Index: chrome/browser/resources/chromeos/chromevox/host/testing/earcons.js
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/host/testing/earcons.js b/chrome/browser/resources/chromeos/chromevox/host/testing/earcons.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..014c07167e06b35362fa7c87ffef521c732f9ddc
|
| --- /dev/null
|
| +++ b/chrome/browser/resources/chromeos/chromevox/host/testing/earcons.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 earcons implementation for testing.
|
| + *
|
| + */
|
| +
|
| +goog.provide('cvox.TestEarcons');
|
| +
|
| +goog.require('cvox.AbstractEarcons');
|
| +goog.require('cvox.HostFactory');
|
| +
|
| +/**
|
| + * @constructor
|
| + * @extends {cvox.AbstractEarcons}
|
| + */
|
| +cvox.TestEarcons = function() {
|
| + cvox.AbstractEarcons.call(this);
|
| +};
|
| +goog.inherits(cvox.TestEarcons, cvox.AbstractEarcons);
|
| +
|
| +cvox.HostFactory.earconsConstructor = cvox.TestEarcons;
|
|
|