cygprofile: increase timeouts to allow showing web contents
[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.
8 */
10 goog.provide('cvox.TestMathJax');
12 goog.require('cvox.AbstractMathJax');
13 goog.require('cvox.HostFactory');
16 /**
17 * @constructor
18 * @extends {cvox.AbstractMathJax}
20 cvox.TestMathJax = function() {
21 goog.base(this);
23 goog.inherits(cvox.TestMathJax, cvox.AbstractMathJax);
26 /**
27 * @override
29 cvox.TestMathJax.prototype.isMathjaxActive = function(callback) { };
32 /**
33 * @override
35 cvox.TestMathJax.prototype.getAllJax = function(callback) { };
38 /**
39 * @override
41 cvox.TestMathJax.prototype.registerSignal = function(
42 callback, signal) { };
45 /**
46 * @override
48 cvox.TestMathJax.prototype.injectScripts = function() { };
51 /**
52 * @override
54 cvox.TestMathJax.prototype.configMediaWiki = function() { };
57 /**
58 * @override
60 cvox.TestMathJax.prototype.getTex = function(callback, texNode) { };
63 /**
64 * @override
66 cvox.TestMathJax.prototype.getAsciiMath = function(callback, asciiMathNode) { };
69 /** Export platform constructor. */
70 cvox.HostFactory.mathJaxConstructor =
71 cvox.TestMathJax;