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

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

Issue 823133004: Cleanup: Update the path to gfx rect headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rect_f.h Created 5 years, 11 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 | « content/public/browser/render_frame_host.h ('k') | content/public/browser/web_contents.h » ('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 (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 7
8 #include <string> 8 #include <string>
9 9
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
11 #include "content/public/common/media_stream_request.h" 11 #include "content/public/common/media_stream_request.h"
12 #include "ui/gfx/rect.h" 12 #include "ui/gfx/geometry/rect.h"
13 13
14 namespace content { 14 namespace content {
15 15
16 // The context information required by clients of the SpeechRecognitionManager 16 // The context information required by clients of the SpeechRecognitionManager
17 // and its delegates for mapping the recognition session to other browser 17 // and its delegates for mapping the recognition session to other browser
18 // elements involved with it (e.g., the page element that requested the 18 // elements involved with it (e.g., the page element that requested the
19 // recognition). The manager keeps this struct attached to the recognition 19 // recognition). The manager keeps this struct attached to the recognition
20 // session during all the session lifetime, making its contents available to 20 // session during all the session lifetime, making its contents available to
21 // clients (In this regard, see SpeechRecognitionManager::GetSessionContext and 21 // clients (In this regard, see SpeechRecognitionManager::GetSessionContext and
22 // SpeechRecognitionManager::LookupSessionByContext methods). 22 // SpeechRecognitionManager::LookupSessionByContext methods).
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 // The label for the permission request, it is used for request abortion. 54 // The label for the permission request, it is used for request abortion.
55 std::string label; 55 std::string label;
56 56
57 // A list of devices being used by the recognition session. 57 // A list of devices being used by the recognition session.
58 MediaStreamDevices devices; 58 MediaStreamDevices devices;
59 }; 59 };
60 60
61 } // namespace content 61 } // namespace content
62 62
63 #endif // CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_SESSION_CONTEXT_H_ 63 #endif // CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_SESSION_CONTEXT_H_
OLDNEW
« no previous file with comments | « content/public/browser/render_frame_host.h ('k') | content/public/browser/web_contents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698