| Index: extensions/browser/guest_view/app_view/app_view_guest.cc
|
| diff --git a/extensions/browser/guest_view/app_view/app_view_guest.cc b/extensions/browser/guest_view/app_view/app_view_guest.cc
|
| index 9b82badfe1508ed2d3819d1a650d5e013db5ffe5..e0aa72c6c28c4c369a56820bca2b1015469d3cab 100644
|
| --- a/extensions/browser/guest_view/app_view/app_view_guest.cc
|
| +++ b/extensions/browser/guest_view/app_view/app_view_guest.cc
|
| @@ -21,6 +21,7 @@
|
| #include "extensions/common/api/app_runtime.h"
|
| #include "extensions/common/extension_messages.h"
|
| #include "extensions/common/switches.h"
|
| +#include "extensions/strings/grit/extensions_strings.h"
|
| #include "ipc/ipc_message_macros.h"
|
|
|
| namespace app_runtime = extensions::core_api::app_runtime;
|
| @@ -134,10 +135,14 @@ bool AppViewGuest::HandleContextMenu(const content::ContextMenuParams& params) {
|
| return false;
|
| }
|
|
|
| -const char* AppViewGuest::GetAPINamespace() {
|
| +const char* AppViewGuest::GetAPINamespace() const {
|
| return appview::kEmbedderAPINamespace;
|
| }
|
|
|
| +int AppViewGuest::GetTaskPrefix() const {
|
| + return IDS_EXTENSION_TASK_MANAGER_APPVIEW_TAG_PREFIX;
|
| +}
|
| +
|
| void AppViewGuest::CreateWebContents(
|
| const std::string& embedder_extension_id,
|
| int embedder_render_process_id,
|
|
|