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

Unified Diff: content/public/browser/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: content/public/browser/web_contents_observer.h
diff --git a/content/public/browser/web_contents_observer.h b/content/public/browser/web_contents_observer.h
index 5f52021c2e69e93467c67293c0ff2078960233b9..a2c13f14b301f07948d186a6e252f287419817b6 100644
--- a/content/public/browser/web_contents_observer.h
+++ b/content/public/browser/web_contents_observer.h
@@ -362,8 +362,8 @@ class CONTENT_EXPORT WebContentsObserver : public IPC::Listener,
// These methods are invoked when a Pepper plugin instance is created/deleted
// in the DOM.
- virtual void PepperInstanceCreated() {}
- virtual void PepperInstanceDeleted() {}
+ virtual void PepperInstanceCreated(int32_t pp_instance) {}
+ virtual void PepperInstanceDeleted(int32_t pp_instance) {}
// Notification that a plugin has crashed.
// |plugin_pid| is the process ID identifying the plugin process. Note that

Powered by Google App Engine
This is Rietveld 408576698