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

Unified Diff: ios/web/public/test/fakes/test_web_state_delegate.h

Issue 2922973004: [ObjC ARC] Converts ios/web/public/test/fakes:fakes to ARC. (Closed)
Patch Set: scoped_nsobject in .h Created 3 years, 6 months 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
« no previous file with comments | « ios/web/public/test/fakes/test_web_state.mm ('k') | ios/web/public/test/fakes/test_web_state_delegate.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/web/public/test/fakes/test_web_state_delegate.h
diff --git a/ios/web/public/test/fakes/test_web_state_delegate.h b/ios/web/public/test/fakes/test_web_state_delegate.h
index a63f0007dd89fcdeef943e010ea47826a1cded23..a7d63d6ec47298523ce5823149981d84f99d40fc 100644
--- a/ios/web/public/test/fakes/test_web_state_delegate.h
+++ b/ios/web/public/test/fakes/test_web_state_delegate.h
@@ -10,7 +10,6 @@
#include <memory>
#include <set>
-#include "base/mac/scoped_nsobject.h"
#import "ios/web/public/web_state/web_state_delegate.h"
#import "ios/web/public/test/fakes/test_java_script_dialog_presenter.h"
@@ -53,8 +52,8 @@ struct TestAuthenticationRequest {
TestAuthenticationRequest(const TestAuthenticationRequest&);
~TestAuthenticationRequest();
WebState* web_state = nullptr;
- base::scoped_nsobject<NSURLProtectionSpace> protection_space;
- base::scoped_nsobject<NSURLCredential> credential;
+ NSURLProtectionSpace* protection_space;
+ NSURLCredential* credential;
WebStateDelegate::AuthCallback auth_callback;
};
« no previous file with comments | « ios/web/public/test/fakes/test_web_state.mm ('k') | ios/web/public/test/fakes/test_web_state_delegate.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698