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

Unified Diff: ios/web/public/app/web_main.h

Issue 1861593005: Convert //ios from scoped_ptr to std::unique_ptr. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase? Created 4 years, 8 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
Index: ios/web/public/app/web_main.h
diff --git a/ios/web/public/app/web_main.h b/ios/web/public/app/web_main.h
index 34ac01a569001a1f9dd5448172623228d22f627a..8ae8ce82e75bbf2cb1746a9d34ecdd298ccad7ac 100644
--- a/ios/web/public/app/web_main.h
+++ b/ios/web/public/app/web_main.h
@@ -5,7 +5,8 @@
#ifndef IOS_WEB_PUBLIC_APP_WEB_MAIN_H_
#define IOS_WEB_PUBLIC_APP_WEB_MAIN_H_
-#include "base/memory/scoped_ptr.h"
+#include <memory>
+
#include "ios/web/public/app/web_main_delegate.h"
namespace web {
@@ -40,7 +41,7 @@ class WebMain {
~WebMain();
private:
- scoped_ptr<WebMainRunner> web_main_runner_;
+ std::unique_ptr<WebMainRunner> web_main_runner_;
};
} // namespace web
« no previous file with comments | « ios/web/net/web_http_protocol_handler_delegate_unittest.mm ('k') | ios/web/public/interstitials/web_interstitial.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698