| Index: chrome/browser/extensions/api/web_navigation/web_navigation_api.cc
|
| diff --git a/chrome/browser/extensions/api/web_navigation/web_navigation_api.cc b/chrome/browser/extensions/api/web_navigation/web_navigation_api.cc
|
| index c9f9cce3c47ece6ec7af634d6373270454775f2b..9e72ecab1c2e14e11b5c99cde71abf8aabef1d1d 100644
|
| --- a/chrome/browser/extensions/api/web_navigation/web_navigation_api.cc
|
| +++ b/chrome/browser/extensions/api/web_navigation/web_navigation_api.cc
|
| @@ -448,7 +448,7 @@ bool WebNavigationTabObserver::IsReferenceFragmentNavigation(
|
| }
|
|
|
| bool WebNavigationGetFrameFunction::RunSync() {
|
| - scoped_ptr<GetFrame::Params> params(GetFrame::Params::Create(*args_));
|
| + std::unique_ptr<GetFrame::Params> params(GetFrame::Params::Create(*args_));
|
| EXTENSION_FUNCTION_VALIDATE(params.get());
|
| int tab_id = params->details.tab_id;
|
| int frame_id = params->details.frame_id;
|
| @@ -495,7 +495,8 @@ bool WebNavigationGetFrameFunction::RunSync() {
|
| }
|
|
|
| bool WebNavigationGetAllFramesFunction::RunSync() {
|
| - scoped_ptr<GetAllFrames::Params> params(GetAllFrames::Params::Create(*args_));
|
| + std::unique_ptr<GetAllFrames::Params> params(
|
| + GetAllFrames::Params::Create(*args_));
|
| EXTENSION_FUNCTION_VALIDATE(params.get());
|
| int tab_id = params->details.tab_id;
|
|
|
|
|