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

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

Issue 1302763002: Add tests for braille commands. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@js2gtesterr
Patch Set: Document gn template args, rename extra_gen_files to gen_include_files Created 5 years, 4 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_braille.js
diff --git a/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_braille.js b/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_braille.js
deleted file mode 100644
index a9e86bf05d82be449e6fbb52ef5c6be1ab4d7bf8..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_braille.js
+++ /dev/null
@@ -1,30 +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 Base class for Braille engines that output to the Braille
- * display.
- *
- */
-
-goog.provide('cvox.AbstractBraille');
-
-goog.require('cvox.BrailleInterface');
-
-
-/**
- * Creates a new instance.
- * @constructor
- * @implements {cvox.BrailleInterface}
- */
-cvox.AbstractBraille = function() {
-};
-
-
-/** @override */
-cvox.AbstractBraille.prototype.write = goog.abstractMethod;
-
-
-/** @override */
-cvox.AbstractBraille.prototype.setCommandListener = goog.abstractMethod;

Powered by Google App Engine
This is Rietveld 408576698