Index: chromecast/browser/test/chromecast_browser_test.h |
diff --git a/chromecast/browser/test/chromecast_browser_test.h b/chromecast/browser/test/chromecast_browser_test.h |
index e570e6c42e2067b2fe4ccdb06268eaecee449bca..3daa51b5b60291323f977904165a523d74e2de81 100644 |
--- a/chromecast/browser/test/chromecast_browser_test.h |
+++ b/chromecast/browser/test/chromecast_browser_test.h |
@@ -5,8 +5,9 @@ |
#ifndef CHROMECAST_BROWSER_TEST_CHROMECAST_BROWSER_TEST_H_ |
#define CHROMECAST_BROWSER_TEST_CHROMECAST_BROWSER_TEST_H_ |
+#include <memory> |
+ |
#include "base/macros.h" |
-#include "base/memory/scoped_ptr.h" |
#include "content/public/test/browser_test.h" |
#include "content/public/test/browser_test_base.h" |
@@ -44,8 +45,8 @@ class ChromecastBrowserTest : public content::BrowserTestBase { |
content::WebContents* web_contents() const { return web_contents_.get(); } |
private: |
- scoped_ptr<content::WebContents> web_contents_; |
- scoped_ptr<CastContentWindow> window_; |
+ std::unique_ptr<content::WebContents> web_contents_; |
+ std::unique_ptr<CastContentWindow> window_; |
bool setup_called_; |