Index: ios/net/crn_http_protocol_handler_proxy_with_client_thread.mm |
diff --git a/ios/net/crn_http_protocol_handler_proxy_with_client_thread.mm b/ios/net/crn_http_protocol_handler_proxy_with_client_thread.mm |
index d6b99b0803a397ae727be2f6dbe3887d8529d649..392b6063195d1f68c4885beab53cb9fb2e7d0771 100644 |
--- a/ios/net/crn_http_protocol_handler_proxy_with_client_thread.mm |
+++ b/ios/net/crn_http_protocol_handler_proxy_with_client_thread.mm |
@@ -22,11 +22,11 @@ |
// as described by the item above. |
@interface CRNHTTPProtocolHandlerProxyWithClientThread () { |
- __weak NSURLProtocol* _protocol; |
+ NSURLProtocol* _protocol; // weak |
// Thread used to call the client back. |
// This thread does not have a base::MessageLoop, and thus does not work with |
// the usual task posting functions. |
- __weak NSThread* _clientThread; |
+ NSThread* _clientThread; // weak |
// The run loop modes to use when posting tasks to |clientThread_|. |
base::scoped_nsobject<NSArray> _runLoopModes; |
// The request URL. |