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

Side by Side Diff: public/platform/WebMediaStream.h

Issue 776693002: Clean forward declaration in public (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix fakewebplugin Created 6 years 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 | « public/platform/WebMediaPlayerClient.h ('k') | public/platform/WebMediaStreamCenter.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 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 15 matching lines...) Expand all
26 #define WebMediaStream_h 26 #define WebMediaStream_h
27 27
28 #include "WebCommon.h" 28 #include "WebCommon.h"
29 #include "WebNonCopyable.h" 29 #include "WebNonCopyable.h"
30 #include "WebPrivatePtr.h" 30 #include "WebPrivatePtr.h"
31 #include "WebVector.h" 31 #include "WebVector.h"
32 32
33 namespace blink { 33 namespace blink {
34 34
35 class MediaStreamDescriptor; 35 class MediaStreamDescriptor;
36 class WebMediaStreamSource;
37 class WebMediaStreamTrack; 36 class WebMediaStreamTrack;
38 class WebString; 37 class WebString;
39 38
40 class WebMediaStream { 39 class WebMediaStream {
41 public: 40 public:
42 class ExtraData { 41 class ExtraData {
43 public: 42 public:
44 virtual ~ExtraData() { } 43 virtual ~ExtraData() { }
45 }; 44 };
46 45
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 BLINK_PLATFORM_EXPORT WebMediaStream& operator=(const WTF::PassRefPtr<MediaS treamDescriptor>&); 84 BLINK_PLATFORM_EXPORT WebMediaStream& operator=(const WTF::PassRefPtr<MediaS treamDescriptor>&);
86 #endif 85 #endif
87 86
88 private: 87 private:
89 WebPrivatePtr<MediaStreamDescriptor> m_private; 88 WebPrivatePtr<MediaStreamDescriptor> m_private;
90 }; 89 };
91 90
92 } // namespace blink 91 } // namespace blink
93 92
94 #endif // WebMediaStream_h 93 #endif // WebMediaStream_h
OLDNEW
« no previous file with comments | « public/platform/WebMediaPlayerClient.h ('k') | public/platform/WebMediaStreamCenter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698