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

Side by Side Diff: chrome/browser/resources/app_list/speech_manager.js

Issue 586783003: webui: change all <include/> to <include>. Same thing, less bits. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: revert print_preview, axe some whitespace 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/app_list/start_page.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * @fileoverview The class to Manage both offline / online speech recognition. 6 * @fileoverview The class to Manage both offline / online speech recognition.
7 */ 7 */
8 8
9 <include src="plugin_manager.js"/> 9 <include src="plugin_manager.js">
10 <include src="audio_manager.js"/> 10 <include src="audio_manager.js">
11 <include src="speech_recognition_manager.js"/> 11 <include src="speech_recognition_manager.js">
12 12
13 cr.define('speech', function() { 13 cr.define('speech', function() {
14 'use strict'; 14 'use strict';
15 15
16 /** 16 /**
17 * The state of speech recognition. 17 * The state of speech recognition.
18 * 18 *
19 * @enum {string} 19 * @enum {string}
20 */ 20 */
21 var SpeechState = { 21 var SpeechState = {
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 if (this.audioManager_.state == speech.AudioState.STOPPED) 303 if (this.audioManager_.state == speech.AudioState.STOPPED)
304 this.audioManager_.start(); 304 this.audioManager_.start();
305 this.speechRecognitionManager_.start(); 305 this.speechRecognitionManager_.start();
306 } 306 }
307 }; 307 };
308 308
309 return { 309 return {
310 SpeechManager: SpeechManager 310 SpeechManager: SpeechManager
311 }; 311 };
312 }); 312 });
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/app_list/start_page.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698