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

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

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 | « public/platform/WebMediaSource.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 16 matching lines...) Expand all
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 WebCore { 33 namespace WebCore {
34 class MediaStreamDescriptor; 34 class MediaStreamDescriptor;
35 } 35 }
36 36
37 namespace WebKit { 37 namespace blink {
38 38
39 class WebMediaStreamSource; 39 class WebMediaStreamSource;
40 class WebMediaStreamTrack; 40 class WebMediaStreamTrack;
41 class WebString; 41 class WebString;
42 42
43 class WebMediaStream { 43 class WebMediaStream {
44 public: 44 public:
45 class ExtraData { 45 class ExtraData {
46 public: 46 public:
47 virtual ~ExtraData() { } 47 virtual ~ExtraData() { }
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 WebMediaStream(const WTF::PassRefPtr<WebCore::MediaStreamDescriptor>&); 85 WebMediaStream(const WTF::PassRefPtr<WebCore::MediaStreamDescriptor>&);
86 operator WTF::PassRefPtr<WebCore::MediaStreamDescriptor>() const; 86 operator WTF::PassRefPtr<WebCore::MediaStreamDescriptor>() const;
87 operator WebCore::MediaStreamDescriptor*() const; 87 operator WebCore::MediaStreamDescriptor*() const;
88 WebMediaStream& operator=(const WTF::PassRefPtr<WebCore::MediaStreamDescript or>&); 88 WebMediaStream& operator=(const WTF::PassRefPtr<WebCore::MediaStreamDescript or>&);
89 #endif 89 #endif
90 90
91 private: 91 private:
92 WebPrivatePtr<WebCore::MediaStreamDescriptor> m_private; 92 WebPrivatePtr<WebCore::MediaStreamDescriptor> m_private;
93 }; 93 };
94 94
95 } // namespace WebKit 95 } // namespace blink
96 96
97 #endif // WebMediaStream_h 97 #endif // WebMediaStream_h
OLDNEW
« no previous file with comments | « public/platform/WebMediaSource.h ('k') | public/platform/WebMediaStreamCenter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698