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

Unified Diff: third_party/WebKit/Source/modules/presentation/PresentationConnection.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/PresentationConnection.h
diff --git a/third_party/WebKit/Source/modules/presentation/PresentationConnection.h b/third_party/WebKit/Source/modules/presentation/PresentationConnection.h
index c61db6223a56d2987e4b081df2d8d4ecff007aea..b4c178a7caca7332aa678240373de10c9c738f2b 100644
--- a/third_party/WebKit/Source/modules/presentation/PresentationConnection.h
+++ b/third_party/WebKit/Source/modules/presentation/PresentationConnection.h
@@ -5,6 +5,7 @@
#ifndef PresentationConnection_h
#define PresentationConnection_h
+#include <memory>
#include "core/dom/ContextLifecycleObserver.h"
#include "core/events/EventTarget.h"
#include "core/fileapi/Blob.h"
@@ -14,9 +15,8 @@
#include "public/platform/modules/presentation/WebPresentationConnection.h"
#include "public/platform/modules/presentation/WebPresentationConnectionProxy.h"
#include "public/platform/modules/presentation/WebPresentationController.h"
-#include "public/platform/modules/presentation/WebPresentationSessionInfo.h"
+#include "public/platform/modules/presentation/WebPresentationInfo.h"
#include "wtf/text/WTFString.h"
-#include <memory>
namespace WTF {
class AtomicString;
@@ -39,13 +39,13 @@ class PresentationConnection final : public EventTargetWithInlineData,
public:
// For CallbackPromiseAdapter.
static PresentationConnection* take(ScriptPromiseResolver*,
- const WebPresentationSessionInfo&,
+ const WebPresentationInfo&,
PresentationRequest*);
static PresentationConnection* take(PresentationController*,
- const WebPresentationSessionInfo&,
+ const WebPresentationInfo&,
PresentationRequest*);
static PresentationConnection* take(PresentationReceiver*,
- const WebPresentationSessionInfo&);
+ const WebPresentationInfo&);
~PresentationConnection() override;
// EventTarget implementation.
@@ -73,9 +73,9 @@ class PresentationConnection final : public EventTargetWithInlineData,
DEFINE_ATTRIBUTE_EVENT_LISTENER(close);
DEFINE_ATTRIBUTE_EVENT_LISTENER(terminate);
- // Returns true if and only if the the session info represents this
+ // Returns true if and only if the the presentation info matches this
// connection.
- bool matches(const WebPresentationSessionInfo&) const;
+ bool matches(const WebPresentationInfo&) const;
// Returns true if this connection's id equals to |id| and its url equals to
// |url|.

Powered by Google App Engine
This is Rietveld 408576698