| Index: chrome/browser/extensions/api/automation_internal/automation_event_router.cc
|
| diff --git a/chrome/browser/extensions/api/automation_internal/automation_event_router.cc b/chrome/browser/extensions/api/automation_internal/automation_event_router.cc
|
| index d0f5c033ff83809c52e46f3888e575ba681df006..291a61083e25b260fe752ab5756501358f44c087 100644
|
| --- a/chrome/browser/extensions/api/automation_internal/automation_event_router.cc
|
| +++ b/chrome/browser/extensions/api/automation_internal/automation_event_router.cc
|
| @@ -90,9 +90,9 @@ void AutomationEventRouter::DispatchAccessibilityEvent(
|
| void AutomationEventRouter::DispatchTreeDestroyedEvent(
|
| int tree_id,
|
| content::BrowserContext* browser_context) {
|
| - scoped_ptr<base::ListValue> args(
|
| + std::unique_ptr<base::ListValue> args(
|
| api::automation_internal::OnAccessibilityTreeDestroyed::Create(tree_id));
|
| - scoped_ptr<Event> event(new Event(
|
| + std::unique_ptr<Event> event(new Event(
|
| events::AUTOMATION_INTERNAL_ON_ACCESSIBILITY_TREE_DESTROYED,
|
| api::automation_internal::OnAccessibilityTreeDestroyed::kEventName,
|
| std::move(args)));
|
|
|