| Index: extensions/browser/api/app_runtime/app_runtime_api.h
|
| diff --git a/extensions/browser/api/app_runtime/app_runtime_api.h b/extensions/browser/api/app_runtime/app_runtime_api.h
|
| index 35a28d22f6007e15d906fa1e25c42c0cec4bb3cd..1548387b2e57d4b0040b00cd457c2fc15139d51c 100644
|
| --- a/extensions/browser/api/app_runtime/app_runtime_api.h
|
| +++ b/extensions/browser/api/app_runtime/app_runtime_api.h
|
| @@ -5,10 +5,10 @@
|
| #ifndef EXTENSIONS_BROWSER_API_APP_RUNTIME_APP_RUNTIME_API_H_
|
| #define EXTENSIONS_BROWSER_API_APP_RUNTIME_APP_RUNTIME_API_H_
|
|
|
| +#include <memory>
|
| #include <string>
|
| #include <vector>
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "extensions/common/constants.h"
|
|
|
| class GURL;
|
| @@ -33,7 +33,7 @@ class AppRuntimeEventRouter {
|
| // Dispatches the onEmbedRequested event to the given app.
|
| static void DispatchOnEmbedRequestedEvent(
|
| content::BrowserContext* context,
|
| - scoped_ptr<base::DictionaryValue> app_embedding_request_data,
|
| + std::unique_ptr<base::DictionaryValue> app_embedding_request_data,
|
| const extensions::Extension* extension);
|
|
|
| // Dispatches the onLaunched event to the given app.
|
|
|