| Index: chrome/browser/guest_view/extension_options/extension_options_guest.cc
|
| diff --git a/chrome/browser/guest_view/extension_options/extension_options_guest.cc b/chrome/browser/guest_view/extension_options/extension_options_guest.cc
|
| index 1e1866b25c8d9db082d1241109a10abe1eaadb75..2aa0d0f1b2fe761174e361799aa4ba48f1cac93c 100644
|
| --- a/chrome/browser/guest_view/extension_options/extension_options_guest.cc
|
| +++ b/chrome/browser/guest_view/extension_options/extension_options_guest.cc
|
| @@ -26,6 +26,7 @@
|
| #include "extensions/common/extension_messages.h"
|
| #include "extensions/common/feature_switch.h"
|
| #include "extensions/common/permissions/permissions_data.h"
|
| +#include "extensions/strings/grit/extensions_strings.h"
|
| #include "ipc/ipc_message_macros.h"
|
|
|
| using content::WebContents;
|
| @@ -43,10 +44,6 @@ ExtensionOptionsGuest::ExtensionOptionsGuest(
|
| ExtensionOptionsGuest::~ExtensionOptionsGuest() {
|
| }
|
|
|
| -const char* ExtensionOptionsGuest::GetAPINamespace() {
|
| - return extensionoptions::kAPINamespace;
|
| -}
|
| -
|
| // static
|
| extensions::GuestViewBase* ExtensionOptionsGuest::Create(
|
| content::BrowserContext* browser_context,
|
| @@ -128,6 +125,14 @@ void ExtensionOptionsGuest::DidStopLoading() {
|
| args.Pass()));
|
| }
|
|
|
| +const char* ExtensionOptionsGuest::GetAPINamespace() const {
|
| + return extensionoptions::kAPINamespace;
|
| +}
|
| +
|
| +int ExtensionOptionsGuest::GetTaskPrefix() const {
|
| + return IDS_EXTENSION_TASK_MANAGER_EXTENSIONOPTIONS_TAG_PREFIX;
|
| +}
|
| +
|
| content::WebContents* ExtensionOptionsGuest::GetAssociatedWebContents() const {
|
| return guest_web_contents();
|
| }
|
|
|