Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4578)

Unified Diff: chrome/browser/resources/chromeos/chromevox/host/interface/abstract_msgs.js

Issue 593133002: Refactor: remove a Chromevox abstract class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/chromevox/host/interface/abstract_msgs.js
diff --git a/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_msgs.js b/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_msgs.js
deleted file mode 100644
index c23594ff9367f5662453bbec4cefa925404c2e2c..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_msgs.js
+++ /dev/null
@@ -1,48 +0,0 @@
-// Copyright 2014 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 Defined the convenience function cvox.Msgs.getMsg.
- */
-
-goog.provide('cvox.AbstractMsgs');
-
-
-
-/**
- * @constructor
- */
-cvox.AbstractMsgs = function() { };
-
-
-
-/**
- * Return the current locale.
- * @return {string} The locale.
- */
-cvox.AbstractMsgs.prototype.getLocale = function() { };
-
-
-/**
- * Returns the message with the given message id.
- *
- * If we can't find a message, throw an exception. This allows us to catch
- * typos early.
- *
- * @param {string} message_id The id.
- * @param {Array.<string>=} opt_subs Substitution strings.
- * @return {string} The message.
- */
-cvox.AbstractMsgs.prototype.getMsg = function(message_id, opt_subs) {
-};
-
-
-/**
- * Retuns a number formatted correctly.
- *
- * @param {number} num The number.
- * @return {string} The number in the correct locale.
- */
-cvox.AbstractMsgs.prototype.getNumber = function(num) {
-};

Powered by Google App Engine
This is Rietveld 408576698