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

Side by Side Diff: content/renderer/media/media_stream_center.h

Issue 15822010: Update refernces to Blink's Platform API (content) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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_RENDERER_MEDIA_MEDIA_STREAM_CENTER_H_ 5 #ifndef CONTENT_RENDERER_MEDIA_MEDIA_STREAM_CENTER_H_
6 #define CONTENT_RENDERER_MEDIA_MEDIA_STREAM_CENTER_H_ 6 #define CONTENT_RENDERER_MEDIA_MEDIA_STREAM_CENTER_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
11 #include "third_party/WebKit/Source/Platform/chromium/public/WebMediaStream.h" 11 #include "third_party/WebKit/public/platform/WebMediaStream.h"
12 #include "third_party/WebKit/Source/Platform/chromium/public/WebMediaStreamCente r.h" 12 #include "third_party/WebKit/public/platform/WebMediaStreamCenter.h"
13 #include "third_party/WebKit/Source/Platform/chromium/public/WebMediaStreamTrack .h" 13 #include "third_party/WebKit/public/platform/WebMediaStreamTrack.h"
14 14
15 namespace WebKit { 15 namespace WebKit {
16 class WebMediaStreamCenterClient; 16 class WebMediaStreamCenterClient;
17 } 17 }
18 18
19 namespace content { 19 namespace content {
20 class MediaStreamDependencyFactory; 20 class MediaStreamDependencyFactory;
21 21
22 class CONTENT_EXPORT MediaStreamCenter 22 class CONTENT_EXPORT MediaStreamCenter
23 : NON_EXPORTED_BASE(public WebKit::WebMediaStreamCenter) { 23 : NON_EXPORTED_BASE(public WebKit::WebMediaStreamCenter) {
(...skipping 30 matching lines...) Expand all
54 // |rtc_factory_| is a weak pointer and is owned by the RenderThreadImpl. 54 // |rtc_factory_| is a weak pointer and is owned by the RenderThreadImpl.
55 // It is valid as long as RenderThreadImpl exist. 55 // It is valid as long as RenderThreadImpl exist.
56 MediaStreamDependencyFactory* rtc_factory_; 56 MediaStreamDependencyFactory* rtc_factory_;
57 57
58 DISALLOW_COPY_AND_ASSIGN(MediaStreamCenter); 58 DISALLOW_COPY_AND_ASSIGN(MediaStreamCenter);
59 }; 59 };
60 60
61 } // namespace content 61 } // namespace content
62 62
63 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_CENTER_H_ 63 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_CENTER_H_
OLDNEW
« no previous file with comments | « content/renderer/internal_document_state_data.h ('k') | content/renderer/media/media_stream_center.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698