| Index: chrome/browser/chromeos/login/signin/merge_session_navigation_throttle.h
|
| diff --git a/chrome/browser/chromeos/login/signin/merge_session_navigation_throttle.h b/chrome/browser/chromeos/login/signin/merge_session_navigation_throttle.h
|
| index e3e81ec602ce964938a13c54d6f116a31fbe5eb0..910357e1142f45432e85aaff544caadb38c980d5 100644
|
| --- a/chrome/browser/chromeos/login/signin/merge_session_navigation_throttle.h
|
| +++ b/chrome/browser/chromeos/login/signin/merge_session_navigation_throttle.h
|
| @@ -5,8 +5,9 @@
|
| #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SIGNIN_MERGE_SESSION_NAVIGATION_THROTTLE_H_
|
| #define CHROME_BROWSER_CHROMEOS_LOGIN_SIGNIN_MERGE_SESSION_NAVIGATION_THROTTLE_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "content/public/browser/navigation_throttle.h"
|
|
|
| @@ -19,7 +20,7 @@ class NavigationHandle;
|
| // progress while we are attempting to load a google property.
|
| class MergeSessionNavigationThrottle : public content::NavigationThrottle {
|
| public:
|
| - static scoped_ptr<content::NavigationThrottle> Create(
|
| + static std::unique_ptr<content::NavigationThrottle> Create(
|
| content::NavigationHandle* handle);
|
| ~MergeSessionNavigationThrottle() override;
|
|
|
|
|