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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/media_request_state.h
diff --git a/content/public/browser/media_request_state.h b/content/public/browser/media_request_state.h
new file mode 100644
index 0000000000000000000000000000000000000000..af77a289a726ac285861a2c8187ebbc5e86c2818
--- /dev/null
+++ b/content/public/browser/media_request_state.h
@@ -0,0 +1,22 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_PUBLIC_BROWSER_MEDIA_REQUEST_STATE_H_
+#define CONTENT_PUBLIC_BROWSER_MEDIA_REQUEST_STATE_H_
+
+namespace content {
+
+enum MediaRequestState {
+ 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.
+ REQUEST_STATE_REQUESTED,
+ REQUEST_STATE_PENDING_APPROVAL,
+ REQUEST_STATE_OPENING,
+ REQUEST_STATE_DONE,
+ REQUEST_STATE_CLOSING,
+ REQUEST_STATE_ERROR
+};
+
+} // namespace content
+
+#endif // CONTENT_PUBLIC_BROWSER_MEDIA_REQUEST_STATE_H_
« 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