The designated initializer method declaration in the Objective-C headers for RTCICEServer does't match its implementation.

R=fischman@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/6019004

Patch from Rafael Lopez Diez <rafalopezdiez@gmail.com>.

git-svn-id: http://webrtc.googlecode.com/svn/trunk@5309 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
fischman@webrtc.org 2013-12-17 21:33:27 +00:00
parent 50f7b2da5d
commit af320fd2f7
2 changed files with 3 additions and 2 deletions

View File

@ -8,6 +8,7 @@ Jie Mao <maojie0924@gmail.com>
Luke Weber
Martin Storsjo <martin@martin.st>
Pali Rohar
Rafael Lopez Diez <rafalopezdiez@gmail.com>
Robert Nagy
Silviu Caragea <silviu.cpp@gmail.com>
Victor Costan <costan@gmail.com>

View File

@ -35,8 +35,8 @@
@property(nonatomic, copy, readonly) NSString* username;
@property(nonatomic, copy, readonly) NSString* password;
// Initializer for RTCICEServer taking uri and password.
- (id)initWithURI:(NSString*)URI
// Initializer for RTCICEServer taking uri, username, and password.
- (id)initWithURI:(NSURL*)URI
username:(NSString*)username
password:(NSString*)password;