| Index: extensions/browser/extension_web_contents_observer.cc
|
| diff --git a/extensions/browser/extension_web_contents_observer.cc b/extensions/browser/extension_web_contents_observer.cc
|
| index 005c90da86c941626ce61112dc880309d50b76e7..75bb08f8a3468e6183e21451ef8c315c695e99de 100644
|
| --- a/extensions/browser/extension_web_contents_observer.cc
|
| +++ b/extensions/browser/extension_web_contents_observer.cc
|
| @@ -180,7 +180,7 @@ bool ExtensionWebContentsObserver::OnMessageReceived(
|
| return handled;
|
| }
|
|
|
| -void ExtensionWebContentsObserver::PepperInstanceCreated() {
|
| +void ExtensionWebContentsObserver::PepperInstanceCreated(int32_t pp_instance) {
|
| if (GetViewType(web_contents()) == VIEW_TYPE_EXTENSION_BACKGROUND_PAGE) {
|
| ProcessManager* const process_manager =
|
| ProcessManager::Get(browser_context_);
|
| @@ -191,7 +191,7 @@ void ExtensionWebContentsObserver::PepperInstanceCreated() {
|
| }
|
| }
|
|
|
| -void ExtensionWebContentsObserver::PepperInstanceDeleted() {
|
| +void ExtensionWebContentsObserver::PepperInstanceDeleted(int32_t pp_instance) {
|
| if (GetViewType(web_contents()) == VIEW_TYPE_EXTENSION_BACKGROUND_PAGE) {
|
| ProcessManager* const process_manager =
|
| ProcessManager::Get(browser_context_);
|
|
|