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

Side by Side Diff: content/public/browser/speech_recognition_session_context.h

Issue 10377082: SpeechInputExtensionManager now interface with SpeechRecognitionManagerDelegate (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Hans review + fixes. Created 8 years, 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_SESSION_CONTEXT_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_SESSION_CONTEXT_H_
6 #define CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_SESSION_CONTEXT_H_ 6 #define CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_SESSION_CONTEXT_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/string16.h"
9 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
10 #include "ui/gfx/rect.h" 11 #include "ui/gfx/rect.h"
11 12
12 namespace content { 13 namespace content {
13 14
14 // The context information required by clients of the SpeechRecognitionManager 15 // The context information required by clients of the SpeechRecognitionManager
15 // and its delegates for mapping the recognition session to other browser 16 // and its delegates for mapping the recognition session to other browser
16 // elements involved with it (e.g., the page element that requested the 17 // elements involved with it (e.g., the page element that requested the
17 // recognition). The SpeechRecognitionManager is not aware of the content of 18 // recognition). The SpeechRecognitionManager is not aware of the content of
18 // this struct and does NOT use it for its purposes. However the manager keeps 19 // this struct and does NOT use it for its purposes. However the manager keeps
19 // this struct "attached" to the recognition session during all the session 20 // this struct "attached" to the recognition session during all the session
20 // lifetime, making its contents available to clients (In this regard, see 21 // lifetime, making its contents available to clients (In this regard, see
21 // SpeechRecognitionManager::GetSessionContext and 22 // SpeechRecognitionManager::GetSessionContext and
22 // SpeechRecognitionManager::LookupSessionByContext methods). 23 // SpeechRecognitionManager::LookupSessionByContext methods).
23 struct CONTENT_EXPORT SpeechRecognitionSessionContext { 24 struct CONTENT_EXPORT SpeechRecognitionSessionContext {
24 SpeechRecognitionSessionContext() 25 SpeechRecognitionSessionContext();
25 : render_process_id(0), 26 ~SpeechRecognitionSessionContext();
26 render_view_id(0),
27 render_request_id(0),
28 js_handle_id(0) {}
29 ~SpeechRecognitionSessionContext() {}
30 27
31 int render_process_id; 28 int render_process_id;
32 int render_view_id; 29 int render_view_id;
33 int render_request_id; 30 int render_request_id;
34 int js_handle_id; 31 int js_handle_id;
32
33 // Determines whether recognition shall use an active bubble on a page element
34 // (which coordinates are passed in |element_rect|) or a background tray icon.
35 bool use_bubble_on_element;
Satish 2012/05/20 21:40:26 similar to jam's comment below, the concept of bub
Primiano Tucci (use gerrit) 2012/05/21 16:03:13 Right, renamed to requested_by_page_element
36
37 // The coordinates of the page element for placing the bubble (valid only when
38 // |use_bubble_on_element| = true).
35 gfx::Rect element_rect; 39 gfx::Rect element_rect;
40
41 // Determines whether a security notification balloon shall pop-up together
42 // with the tray icon (valid only when |use_bubble_on_element| = false).
43 bool show_security_balloon;
jam 2012/05/17 16:45:16 this is a chrome concept and doesn't belong in con
Primiano Tucci (use gerrit) 2012/05/21 16:03:13 Renamed and added a TODO, since it will be removed
44
45 // A texual description of the context (website, extension name) that is
46 // requesting recognition, for prompting security notifications to the user.
47 string16 context_name;
36 }; 48 };
37 49
38 } // namespace content 50 } // namespace content
39 51
40 #endif // CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_SESSION_CONTEXT_H_ 52 #endif // CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_SESSION_CONTEXT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698