Add new certificateProvider extension API.
[chromium-blink-merge.git] / chrome / browser / resources / chromeos / chromevox / host / testing / mathjax.js
blob2f9e329284ec927d985db9038362d9b278e8038c
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 /**
6  * @fileoverview Testing stub for MathJax.
7  *
8  */
10 goog.provide('cvox.TestMathJax');
12 goog.require('cvox.AbstractMathJax');
13 goog.require('cvox.HostFactory');
16 /**
17  * @constructor
18  * @extends {cvox.AbstractMathJax}
19  */
20 cvox.TestMathJax = function() {
21   goog.base(this);
23 goog.inherits(cvox.TestMathJax, cvox.AbstractMathJax);
26 /**
27  * @override
28  */
29 cvox.TestMathJax.prototype.isMathjaxActive = function(callback) { };
32 /**
33  * @override
34  */
35 cvox.TestMathJax.prototype.getAllJax = function(callback) { };
38 /**
39  * @override
40  */
41 cvox.TestMathJax.prototype.registerSignal = function(
42     callback, signal) { };
45 /**
46  * @override
47  */
48 cvox.TestMathJax.prototype.injectScripts = function() { };
51 /**
52  * @override
53  */
54 cvox.TestMathJax.prototype.configMediaWiki = function() { };
57 /**
58  * @override
59  */
60 cvox.TestMathJax.prototype.getTex = function(callback, texNode) { };
63 /**
64  * @override
65  */
66 cvox.TestMathJax.prototype.getAsciiMath = function(callback, asciiMathNode) { };
69 /** Export platform constructor. */
70 cvox.HostFactory.mathJaxConstructor =
71     cvox.TestMathJax;