| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chromecast/browser/test/chromecast_browser_test_helper.h" | 5 #include "chromecast/browser/test/chromecast_browser_test_helper.h" |
| 6 | 6 |
| 7 #include "base/memory/ptr_util.h" | 7 #include "base/memory/ptr_util.h" |
| 8 #include "chromecast/browser/cast_browser_context.h" | 8 #include "chromecast/browser/cast_browser_context.h" |
| 9 #include "chromecast/browser/cast_browser_process.h" | 9 #include "chromecast/browser/cast_browser_process.h" |
| 10 #include "chromecast/browser/cast_content_window.h" | 10 #include "chromecast/browser/cast_content_window.h" |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 | 40 |
| 41 private: | 41 private: |
| 42 std::unique_ptr<CastContentWindow> window_; | 42 std::unique_ptr<CastContentWindow> window_; |
| 43 std::unique_ptr<content::WebContents> web_contents_; | 43 std::unique_ptr<content::WebContents> web_contents_; |
| 44 }; | 44 }; |
| 45 | 45 |
| 46 } // namespace | 46 } // namespace |
| 47 | 47 |
| 48 std::unique_ptr<ChromecastBrowserTestHelper> | 48 std::unique_ptr<ChromecastBrowserTestHelper> |
| 49 ChromecastBrowserTestHelper::Create() { | 49 ChromecastBrowserTestHelper::Create() { |
| 50 return base::WrapUnique(new DefaultHelper()); | 50 return base::MakeUnique<DefaultHelper>(); |
| 51 } | 51 } |
| 52 | 52 |
| 53 } // namespace shell | 53 } // namespace shell |
| 54 } // namespace chromecast | 54 } // namespace chromecast |
| OLD | NEW |