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

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

Issue 10928043: Media Related changes for TabCapture API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Windows build issue Created 8 years, 2 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
« no previous file with comments | « content/public/browser/media_observer.h ('k') | content/public/common/media_stream_request.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_PUBLIC_BROWSER_MEDIA_REQUEST_STATE_H_
6 #define CONTENT_PUBLIC_BROWSER_MEDIA_REQUEST_STATE_H_
7
8 namespace content {
9
10 enum MediaRequestState {
11 REQUEST_STATE_NOT_REQUESTED = 0,
jam 2012/10/15 06:38:57 nit: sorry I meant to say MEDIA_REQUEST_foo
justinlin 2012/10/15 14:43:18 Done.
12 REQUEST_STATE_REQUESTED,
13 REQUEST_STATE_PENDING_APPROVAL,
14 REQUEST_STATE_OPENING,
15 REQUEST_STATE_DONE,
16 REQUEST_STATE_CLOSING,
17 REQUEST_STATE_ERROR
18 };
19
20 } // namespace content
21
22 #endif // CONTENT_PUBLIC_BROWSER_MEDIA_REQUEST_STATE_H_
OLDNEW
« no previous file with comments | « content/public/browser/media_observer.h ('k') | content/public/common/media_stream_request.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698