| Index: chrome/browser/chromeos/login/signin/merge_session_navigation_throttle.cc
|
| diff --git a/chrome/browser/chromeos/login/signin/merge_session_navigation_throttle.cc b/chrome/browser/chromeos/login/signin/merge_session_navigation_throttle.cc
|
| index 0f7cff4d092b70fc5086066814c1326227f514f4..fa890843599df707d9afcbb4b0a464d9b5dc45a8 100644
|
| --- a/chrome/browser/chromeos/login/signin/merge_session_navigation_throttle.cc
|
| +++ b/chrome/browser/chromeos/login/signin/merge_session_navigation_throttle.cc
|
| @@ -9,9 +9,9 @@
|
| #include "content/public/browser/navigation_handle.h"
|
|
|
| // static
|
| -scoped_ptr<content::NavigationThrottle> MergeSessionNavigationThrottle::Create(
|
| - content::NavigationHandle* handle) {
|
| - return scoped_ptr<content::NavigationThrottle>(
|
| +std::unique_ptr<content::NavigationThrottle>
|
| +MergeSessionNavigationThrottle::Create(content::NavigationHandle* handle) {
|
| + return std::unique_ptr<content::NavigationThrottle>(
|
| new MergeSessionNavigationThrottle(handle));
|
| }
|
|
|
|
|