OLD | NEW |
(Empty) | |
| 1 // Copyright 2013 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. |
| 4 |
| 5 /** |
| 6 * @fileoverview Testing stub for MathJax. |
| 7 * |
| 8 */ |
| 9 |
| 10 goog.provide('cvox.TestMathJax'); |
| 11 |
| 12 goog.require('cvox.AbstractMathJax'); |
| 13 goog.require('cvox.HostFactory'); |
| 14 |
| 15 |
| 16 /** |
| 17 * @constructor |
| 18 * @extends {cvox.AbstractMathJax} |
| 19 */ |
| 20 cvox.TestMathJax = function() { |
| 21 goog.base(this); |
| 22 }; |
| 23 goog.inherits(cvox.TestMathJax, cvox.AbstractMathJax); |
| 24 |
| 25 |
| 26 /** |
| 27 * @override |
| 28 */ |
| 29 cvox.TestMathJax.prototype.isMathjaxActive = function(callback) { }; |
| 30 |
| 31 |
| 32 /** |
| 33 * @override |
| 34 */ |
| 35 cvox.TestMathJax.prototype.getAllJax = function(callback) { }; |
| 36 |
| 37 |
| 38 /** |
| 39 * @override |
| 40 */ |
| 41 cvox.TestMathJax.prototype.registerSignal = function( |
| 42 callback, signal) { }; |
| 43 |
| 44 |
| 45 /** |
| 46 * @override |
| 47 */ |
| 48 cvox.TestMathJax.prototype.injectScripts = function() { }; |
| 49 |
| 50 |
| 51 /** |
| 52 * @override |
| 53 */ |
| 54 cvox.TestMathJax.prototype.configMediaWiki = function() { }; |
| 55 |
| 56 |
| 57 /** |
| 58 * @override |
| 59 */ |
| 60 cvox.TestMathJax.prototype.getTex = function(callback, texNode) { }; |
| 61 |
| 62 |
| 63 /** |
| 64 * @override |
| 65 */ |
| 66 cvox.TestMathJax.prototype.getAsciiMath = function(callback, asciiMathNode) { }; |
| 67 |
| 68 |
| 69 /** Export platform constructor. */ |
| 70 cvox.HostFactory.mathJaxConstructor = |
| 71 cvox.TestMathJax; |
OLD | NEW |