Index: ios/web/shell/shell_main_delegate.h |
diff --git a/ios/web/shell/shell_main_delegate.h b/ios/web/shell/shell_main_delegate.h |
index 7f07f633ec54ec258c6cdcd0715ecf9877cead50..afd2ccb668067fc6c7b425561c22d209259c40dd 100644 |
--- a/ios/web/shell/shell_main_delegate.h |
+++ b/ios/web/shell/shell_main_delegate.h |
@@ -5,8 +5,9 @@ |
#ifndef IOS_WEB_SHELL_SHELL_MAIN_DELEGATE_H_ |
#define IOS_WEB_SHELL_SHELL_MAIN_DELEGATE_H_ |
+#include <memory> |
+ |
#include "base/compiler_specific.h" |
-#include "base/memory/scoped_ptr.h" |
#include "ios/web/public/app/web_main_delegate.h" |
namespace web { |
@@ -20,7 +21,7 @@ class ShellMainDelegate : public WebMainDelegate { |
void BasicStartupComplete() override; |
private: |
- scoped_ptr<ShellWebClient> web_client_; |
+ std::unique_ptr<ShellWebClient> web_client_; |
}; |
} // namespace web |