aboutsummaryrefslogtreecommitdiff
path: root/talk/app/webrtc/objc/public
diff options
context:
space:
mode:
authorfischman@webrtc.org <fischman@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-12-17 21:33:27 +0000
committerfischman@webrtc.org <fischman@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-12-17 21:33:27 +0000
commitaf320fd2f7d68dcf672b814e958865d5e331eeb2 (patch)
tree41dc077a7221bbf2699911cbaf3c0776bb91b00d /talk/app/webrtc/objc/public
parent50f7b2da5def9285f0674d5718d86ee4a3f908a5 (diff)
downloadwebrtc-af320fd2f7d68dcf672b814e958865d5e331eeb2.tar.gz
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
Diffstat (limited to 'talk/app/webrtc/objc/public')
-rw-r--r--talk/app/webrtc/objc/public/RTCICEServer.h4
1 files changed, 2 insertions, 2 deletions
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;