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

Unified Diff: content/renderer/media/media_stream_center.cc

Issue 9639017: Revert 125629 - Adding a skeleton MediaStreamCenter. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 9 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/renderer/media/media_stream_center.h ('k') | content/renderer/render_thread_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/media_stream_center.cc
===================================================================
--- content/renderer/media/media_stream_center.cc (revision 125630)
+++ content/renderer/media/media_stream_center.cc (working copy)
@@ -1,44 +0,0 @@
-// 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.
-
-#include "content/renderer/media/media_stream_center.h"
-
-#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebMediaStreamCenterClient.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebMediaStreamDescriptor.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebMediaStreamSource.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebMediaStreamSourcesRequest.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebVector.h"
-
-namespace content {
-
-MediaStreamCenter::MediaStreamCenter(
- WebKit::WebMediaStreamCenterClient* client)
- : client_(client) {
-}
-
-void MediaStreamCenter::queryMediaStreamSources(
- const WebKit::WebMediaStreamSourcesRequest& request) {
- WebKit::WebVector<WebKit::WebMediaStreamSource> audioSources, videoSources;
- request.didCompleteQuery(audioSources, videoSources);
-}
-
-void MediaStreamCenter::didEnableMediaStreamTrack(
- const WebKit::WebMediaStreamDescriptor& stream,
- const WebKit::WebMediaStreamComponent& component) {
-}
-
-void MediaStreamCenter::didDisableMediaStreamTrack(
- const WebKit::WebMediaStreamDescriptor& stream,
- const WebKit::WebMediaStreamComponent& component) {
-}
-
-void MediaStreamCenter::didStopLocalMediaStream(
- const WebKit::WebMediaStreamDescriptor& stream) {
-}
-
-void MediaStreamCenter::didConstructMediaStream(
- const WebKit::WebMediaStreamDescriptor& stream) {
-}
-
-} // namespace content
« no previous file with comments | « content/renderer/media/media_stream_center.h ('k') | content/renderer/render_thread_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698