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

Side by Side Diff: third_party/WebKit/public/platform/WebMediaStreamSource.h

Issue 1915793002: Remove a |readonly| member of MediaStreamTrack (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove a |readonly| argument in unittest files Created 4 years, 7 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
« no previous file with comments | « third_party/WebKit/Source/platform/mediastream/MediaStreamSource.cpp ('k') | no next file » | 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) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 83
84 WebMediaStreamSource& operator=(const WebMediaStreamSource& other) 84 WebMediaStreamSource& operator=(const WebMediaStreamSource& other)
85 { 85 {
86 assign(other); 86 assign(other);
87 return *this; 87 return *this;
88 } 88 }
89 89
90 BLINK_PLATFORM_EXPORT void assign(const WebMediaStreamSource&); 90 BLINK_PLATFORM_EXPORT void assign(const WebMediaStreamSource&);
91 91
92 BLINK_PLATFORM_EXPORT void initialize(const WebString& id, Type, const WebSt ring& name); // DEPRECATED 92 BLINK_PLATFORM_EXPORT void initialize(const WebString& id, Type, const WebSt ring& name); // DEPRECATED
93 BLINK_PLATFORM_EXPORT void initialize(const WebString& id, Type, const WebSt ring& name, bool remote, bool readonly); 93 BLINK_PLATFORM_EXPORT void initialize(const WebString& id, Type, const WebSt ring& name, bool remote);
94 BLINK_PLATFORM_EXPORT void reset(); 94 BLINK_PLATFORM_EXPORT void reset();
95 bool isNull() const { return m_private.isNull(); } 95 bool isNull() const { return m_private.isNull(); }
96 96
97 BLINK_PLATFORM_EXPORT WebString id() const; 97 BLINK_PLATFORM_EXPORT WebString id() const;
98 BLINK_PLATFORM_EXPORT Type getType() const; 98 BLINK_PLATFORM_EXPORT Type getType() const;
99 BLINK_PLATFORM_EXPORT WebString name() const; 99 BLINK_PLATFORM_EXPORT WebString name() const;
100 BLINK_PLATFORM_EXPORT bool remote() const; 100 BLINK_PLATFORM_EXPORT bool remote() const;
101 101
102 BLINK_PLATFORM_EXPORT void setReadyState(ReadyState); 102 BLINK_PLATFORM_EXPORT void setReadyState(ReadyState);
103 BLINK_PLATFORM_EXPORT ReadyState getReadyState() const; 103 BLINK_PLATFORM_EXPORT ReadyState getReadyState() const;
(...skipping 21 matching lines...) Expand all
125 BLINK_PLATFORM_EXPORT operator MediaStreamSource*() const; 125 BLINK_PLATFORM_EXPORT operator MediaStreamSource*() const;
126 #endif 126 #endif
127 127
128 private: 128 private:
129 WebPrivatePtr<MediaStreamSource> m_private; 129 WebPrivatePtr<MediaStreamSource> m_private;
130 }; 130 };
131 131
132 } // namespace blink 132 } // namespace blink
133 133
134 #endif // WebMediaStreamSource_h 134 #endif // WebMediaStreamSource_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/mediastream/MediaStreamSource.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698