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

Unified Diff: content/renderer/presentation/presentation_session_client.h

Issue 935083002: [PresentationAPI] Implementing start/joinSession from WebPresentationClient to PresentationService. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed the last round of comments Created 5 years, 10 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/renderer/presentation/presentation_session_client.h
diff --git a/content/renderer/presentation/presentation_session_client.h b/content/renderer/presentation/presentation_session_client.h
new file mode 100644
index 0000000000000000000000000000000000000000..c6cc2599e7b4a4633311f2df7df9a2937243f0ae
--- /dev/null
+++ b/content/renderer/presentation/presentation_session_client.h
@@ -0,0 +1,35 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_RENDERER_PRESENTATION_PRESENTATION_SESSION_CLIENT_H_
+#define CONTENT_RENDERER_PRESENTATION_PRESENTATION_SESSION_CLIENT_H_
+
+#include "base/compiler_specific.h"
+#include "content/common/content_export.h"
+#include "third_party/WebKit/public/platform/modules/presentation/WebPresentationSessionClient.h"
+
+namespace content {
+
+class PresentationSessionDispatcher;
+
+// PresentationSessionClient is passed to the Blink layer if presentation
+// session has been created successfully. Owned by the callback.
+class CONTENT_EXPORT PresentationSessionClient
+ : public NON_EXPORTED_BASE(blink::WebPresentationSessionClient) {
+ public:
+ explicit PresentationSessionClient(PresentationSessionDispatcher* dispatcher);
+ ~PresentationSessionClient() override;
+
+ // WebPresentationSessionClient implementation.
+ virtual blink::WebString getUrl();
+ virtual blink::WebString getId();
+
+ private:
+ blink::WebString url_;
+ blink::WebString id_;
+};
+
+} // namespace content
+
+#endif // CONTENT_RENDERER_PRESENTATION_PRESENTATION_SESSION_CLIENT_H_
« no previous file with comments | « content/renderer/presentation/presentation_dispatcher.cc ('k') | content/renderer/presentation/presentation_session_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698