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

Side by Side Diff: talk/app/webrtc/objc/public/RTCMediaStreamTrack.h

Issue 1816143002: Removed MediaStreamTrackInterface::set_state (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@track_state_listen_on_source2
Patch Set: Rebased Created 4 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 unified diff | Download patch
« no previous file with comments | « talk/app/webrtc/objc/RTCMediaStreamTrack.mm ('k') | webrtc/api/java/jni/peerconnection_jni.cc » ('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 * libjingle 2 * libjingle
3 * Copyright 2013 Google Inc. 3 * Copyright 2013 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met: 6 * modification, are permitted provided that the following conditions are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright notice, 8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer. 9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice, 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 30 matching lines...) Expand all
41 // of the derived classes. 41 // of the derived classes.
42 @interface RTCMediaStreamTrack : NSObject 42 @interface RTCMediaStreamTrack : NSObject
43 43
44 @property(nonatomic, readonly) NSString* kind; 44 @property(nonatomic, readonly) NSString* kind;
45 @property(nonatomic, readonly) NSString* label; 45 @property(nonatomic, readonly) NSString* label;
46 @property(nonatomic, weak) id<RTCMediaStreamTrackDelegate> delegate; 46 @property(nonatomic, weak) id<RTCMediaStreamTrackDelegate> delegate;
47 47
48 - (BOOL)isEnabled; 48 - (BOOL)isEnabled;
49 - (BOOL)setEnabled:(BOOL)enabled; 49 - (BOOL)setEnabled:(BOOL)enabled;
50 - (RTCTrackState)state; 50 - (RTCTrackState)state;
51 - (BOOL)setState:(RTCTrackState)state;
52 51
53 #ifndef DOXYGEN_SHOULD_SKIP_THIS 52 #ifndef DOXYGEN_SHOULD_SKIP_THIS
54 // Disallow init and don't add to documentation 53 // Disallow init and don't add to documentation
55 - (id)init __attribute__( 54 - (id)init __attribute__(
56 (unavailable("init is not a supported initializer for this class."))); 55 (unavailable("init is not a supported initializer for this class.")));
57 #endif /* DOXYGEN_SHOULD_SKIP_THIS */ 56 #endif /* DOXYGEN_SHOULD_SKIP_THIS */
58 57
59 @end 58 @end
OLDNEW
« no previous file with comments | « talk/app/webrtc/objc/RTCMediaStreamTrack.mm ('k') | webrtc/api/java/jni/peerconnection_jni.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698