Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / resources / chromeos / chromevox / chromevox / messages / spoken_message.js
1 // Copyright 2014 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 A basic abstraction of messages.
7  *
8  */
9
10 goog.provide('cvox.SpokenMessage');
11
12 /**
13  * @constructor
14  */
15 cvox.SpokenMessage = function() {
16   /** @type {?number} */
17   this.count = null;
18
19   /** @type {Array} */
20   this.id = null;
21
22   /**
23    * A message that has been already localized and should be sent to tts raw.
24    * @type {?string}
25    */
26   this.raw = null;
27 };