summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/chromeos/chromevox/chromevox/messages/spoken_message.js
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/browser/resources/chromeos/chromevox/chromevox/messages/spoken_message.js')
-rw-r--r--chromium/chrome/browser/resources/chromeos/chromevox/chromevox/messages/spoken_message.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/chromium/chrome/browser/resources/chromeos/chromevox/chromevox/messages/spoken_message.js b/chromium/chrome/browser/resources/chromeos/chromevox/chromevox/messages/spoken_message.js
new file mode 100644
index 00000000000..7e109584f1b
--- /dev/null
+++ b/chromium/chrome/browser/resources/chromeos/chromevox/chromevox/messages/spoken_message.js
@@ -0,0 +1,27 @@
+// 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 A basic abstraction of messages.
+ *
+ */
+
+goog.provide('cvox.SpokenMessage');
+
+/**
+ * @constructor
+ */
+cvox.SpokenMessage = function() {
+ /** @type {?Number} */
+ this.count = null;
+
+ /** @type {Array} */
+ this.id = null;
+
+ /**
+ * A message that has been already localized and should be sent to tts raw.
+ * @type {?string}
+ */
+ this.raw = null;
+};