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; |