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

Unified Diff: third_party/WebKit/Source/modules/presentation/PresentationConnectionCallbacks.h

Issue 2737413003: [Presentation API] Remove references to presentation sessions. (Closed)
Patch Set: Update PresentationServiceDelegateImpl unittest Created 3 years, 9 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: third_party/WebKit/Source/modules/presentation/PresentationConnectionCallbacks.h
diff --git a/third_party/WebKit/Source/modules/presentation/PresentationConnectionCallbacks.h b/third_party/WebKit/Source/modules/presentation/PresentationConnectionCallbacks.h
index a54018c2483fce1986bc396e095cf96d86c17691..f743ddad7c1640a32a5f698e38e7173b26705478 100644
--- a/third_party/WebKit/Source/modules/presentation/PresentationConnectionCallbacks.h
+++ b/third_party/WebKit/Source/modules/presentation/PresentationConnectionCallbacks.h
@@ -15,8 +15,8 @@ namespace blink {
class PresentationConnection;
class PresentationRequest;
class ScriptPromiseResolver;
-struct WebPresentationSessionInfo;
struct WebPresentationError;
+struct WebPresentationInfo;
// PresentationConnectionCallbacks extends WebCallbacks to resolve the
// underlying promise depending on the result passed to the callback. It takes
@@ -29,7 +29,7 @@ class PresentationConnectionCallbacks final
~PresentationConnectionCallbacks() override = default;
// WebCallbacks implementation
- void onSuccess(const WebPresentationSessionInfo&) override;
+ void onSuccess(const WebPresentationInfo&) override;
void onError(const WebPresentationError&) override;
// WebPresentationConnectionCallbacks implementation

Powered by Google App Engine
This is Rietveld 408576698