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 |