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

Unified Diff: content/browser/presentation/presentation_service_impl.h

Issue 2355723004: [Presentation API] 1-UA: send message between controller and receiver page (Closed)
Patch Set: Merge with changes in Issue 2343013002 Created 4 years, 3 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/browser/presentation/presentation_service_impl.h
diff --git a/content/browser/presentation/presentation_service_impl.h b/content/browser/presentation/presentation_service_impl.h
index 8a13ac29e94e4ae282daf73140ec9f5ca43a29af..b742bac469defa3e124fe7f03b7dabeb592d23b2 100644
--- a/content/browser/presentation/presentation_service_impl.h
+++ b/content/browser/presentation/presentation_service_impl.h
@@ -229,21 +229,21 @@ class CONTENT_EXPORT PresentationServiceImpl
void ListenForConnectionStateChange(
const PresentationSessionInfo& connection);
+ // OffscreenPresentationClient Implementation
// Passed to embedder's implementation of PresentationServiceDelegate for
// later invocation when session messages arrive.
void OnSessionMessages(
const content::PresentationSessionInfo& session,
const ScopedVector<PresentationSessionMessage>& messages,
- bool pass_ownership);
-
- void OnReceiverConnectionAvailable(const content::PresentationSessionInfo&,
- OffscreenPresentationClient* controller);
+ bool pass_ownership) override;
- // OffscreenPresentationClient Implementation
void SetOffscreenPresentationClient(OffscreenPresentationClient*) override;
void RemoveOffscreenPresentationClient(OffscreenPresentationClient*) override;
+ void OnReceiverConnectionAvailable(const content::PresentationSessionInfo&,
+ OffscreenPresentationClient* controller);
+
// Associates a JoinSession |callback| with a unique request ID and
// stores it in a map.
// Returns a positive value on success.

Powered by Google App Engine
This is Rietveld 408576698