From af320fd2f7d68dcf672b814e958865d5e331eeb2 Mon Sep 17 00:00:00 2001 From: "fischman@webrtc.org" Date: Tue, 17 Dec 2013 21:33:27 +0000 Subject: [PATCH] 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 . git-svn-id: http://webrtc.googlecode.com/svn/trunk@5309 4adac7df-926f-26a2-2b94-8c16560cd09d --- AUTHORS | 1 + talk/app/webrtc/objc/public/RTCICEServer.h | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index e5f2839ba8..741c7fde78 100644 --- a/AUTHORS +++ b/AUTHORS @@ -8,6 +8,7 @@ Jie Mao Luke Weber Martin Storsjo Pali Rohar +Rafael Lopez Diez Robert Nagy Silviu Caragea Victor Costan diff --git a/talk/app/webrtc/objc/public/RTCICEServer.h b/talk/app/webrtc/objc/public/RTCICEServer.h index 63c14efaaf..b0adbf1ed0 100644 --- a/talk/app/webrtc/objc/public/RTCICEServer.h +++ b/talk/app/webrtc/objc/public/RTCICEServer.h @@ -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;