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

Unified Diff: webrtc/base/objc/NSString+StdString.h

Issue 1499653003: Add implementation and tests for RTCIceServer (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Remove Mac from webrtc_tests Created 5 years 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/base/objc/NSString+StdString.h
diff --git a/webrtc/examples/objc/AppRTCDemo/ARDTURNClient.h b/webrtc/base/objc/NSString+StdString.h
similarity index 58%
copy from webrtc/examples/objc/AppRTCDemo/ARDTURNClient.h
copy to webrtc/base/objc/NSString+StdString.h
index 8f2a81734229fca65421613794b3ab1accca8c2e..532032b3fca66977290d612f1e998c205cceef00 100644
--- a/webrtc/examples/objc/AppRTCDemo/ARDTURNClient.h
+++ b/webrtc/base/objc/NSString+StdString.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2014 The WebRTC Project Authors. All rights reserved.
+ * Copyright 2015 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
@@ -10,11 +10,16 @@
#import <Foundation/Foundation.h>
-@protocol ARDTURNClient <NSObject>
+#include <string>
-// Returns TURN server urls if successful.
-- (void)requestServersWithCompletionHandler:
- (void (^)(NSArray *turnServers,
- NSError *error))completionHandler;
+NS_ASSUME_NONNULL_BEGIN
+
+@interface NSString (StdString)
+
+@property(nonatomic, readonly) std::string stdString;
+
++ (std::string)stdStringForString:(NSString *)nsString;
@end
+
+NS_ASSUME_NONNULL_END

Powered by Google App Engine
This is Rietveld 408576698