Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Unified Diff: extensions/browser/extension_web_contents_observer.h

Issue 2060933002: Let Flash join and be controlled by media session (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@pepper_to_contents
Patch Set: modified when to add/remove player to/from MediaSession Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: extensions/browser/extension_web_contents_observer.h
diff --git a/extensions/browser/extension_web_contents_observer.h b/extensions/browser/extension_web_contents_observer.h
index 2c15333c47dc1172bb1acd22099e46c43491341d..0fe10e1f5192641d0616b724e99d8ea68c073f3d 100644
--- a/extensions/browser/extension_web_contents_observer.h
+++ b/extensions/browser/extension_web_contents_observer.h
@@ -100,8 +100,8 @@ class ExtensionWebContentsObserver
// Per the documentation in WebContentsObserver, these two methods are invoked
// when a Pepper plugin instance is attached/detached in the page DOM.
- void PepperInstanceCreated() override;
- void PepperInstanceDeleted() override;
+ void PepperInstanceCreated(int32_t pp_instance) override;
+ void PepperInstanceDeleted(int32_t pp_instance) override;
// Returns the extension id associated with the given |render_frame_host|, or
// the empty string if there is none.

Powered by Google App Engine
This is Rietveld 408576698