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

Unified Diff: third_party/WebKit/public/platform/modules/presentation/WebPresentationConnectionCallbacks.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/public/platform/modules/presentation/WebPresentationConnectionCallbacks.h
diff --git a/third_party/WebKit/public/platform/modules/presentation/WebPresentationConnectionCallbacks.h b/third_party/WebKit/public/platform/modules/presentation/WebPresentationConnectionCallbacks.h
index d24220f0468be046e5c9c7271a55e162ddaebf25..599fcc9ce3f26d50476ed91e6e914c852f57785f 100644
--- a/third_party/WebKit/public/platform/modules/presentation/WebPresentationConnectionCallbacks.h
+++ b/third_party/WebKit/public/platform/modules/presentation/WebPresentationConnectionCallbacks.h
@@ -12,13 +12,13 @@ namespace blink {
class WebPresentationConnection;
struct WebPresentationError;
-struct WebPresentationSessionInfo;
+struct WebPresentationInfo;
-// If session was created, callback's onSuccess() is invoked with the
-// information about the presentation session created by the embedder.
-// Otherwise, onError() is invoked with the error code and message.
+// If a presentation was created, callback's onSuccess() is invoked with the
+// information about the presentation. Otherwise, onError() is invoked with the
+// error code and message.
class WebPresentationConnectionCallbacks
- : public WebCallbacks<const WebPresentationSessionInfo&,
+ : public WebCallbacks<const WebPresentationInfo&,
const WebPresentationError&> {
public:
// Returns newly created PresentationConnection object if

Powered by Google App Engine
This is Rietveld 408576698