| Index: content/browser/web_contents/web_contents_impl.cc
|
| diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc
|
| index 775479174508804f107bf40c913a805590a1ccca..fc02b25e97cc43509ae7f1b7b9f1a3f7aff65715 100644
|
| --- a/content/browser/web_contents/web_contents_impl.cc
|
| +++ b/content/browser/web_contents/web_contents_impl.cc
|
| @@ -3700,12 +3700,14 @@ void WebContentsImpl::OnWebUISend(const GURL& source_url,
|
| }
|
|
|
| #if defined(ENABLE_PLUGINS)
|
| -void WebContentsImpl::OnPepperInstanceCreated() {
|
| - FOR_EACH_OBSERVER(WebContentsObserver, observers_, PepperInstanceCreated());
|
| +void WebContentsImpl::OnPepperInstanceCreated(int32_t pp_instance) {
|
| + FOR_EACH_OBSERVER(WebContentsObserver, observers_,
|
| + PepperInstanceCreated(pp_instance));
|
| }
|
|
|
| -void WebContentsImpl::OnPepperInstanceDeleted() {
|
| - FOR_EACH_OBSERVER(WebContentsObserver, observers_, PepperInstanceDeleted());
|
| +void WebContentsImpl::OnPepperInstanceDeleted(int32_t pp_instance) {
|
| + FOR_EACH_OBSERVER(WebContentsObserver, observers_,
|
| + PepperInstanceDeleted(pp_instance));
|
| }
|
|
|
| void WebContentsImpl::OnPepperPluginHung(int plugin_child_id,
|
|
|