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

Side by Side Diff: content/renderer/presentation/presentation_session_dispatcher.h

Issue 935083002: [PresentationAPI] Implementing start/joinSession from WebPresentationClient to PresentationService. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Full change 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_RENDERER_PRESENTATION_PRESENTATION_SESSION_DISPATCHER_H_
6 #define CONTENT_RENDERER_PRESENTATION_PRESENTATION_SESSION_DISPATCHER_H_
7
8 #include "base/compiler_specific.h"
9 #include "content/common/content_export.h"
10 #include "content/common/presentation/presentation_service.mojom.h"
11 #include "third_party/WebKit/public/platform/modules/presentation/WebPresentatio nSessionClient.h"
mlamouri (slow - plz ping) 2015/02/26 22:24:26 not sure you need that.
whywhat 2015/02/27 14:44:45 Done.
12
13 namespace content {
14
15 // A wrapper around the Mojo PresentationSession remote object.
16 class CONTENT_EXPORT PresentationSessionDispatcher {
17 public:
18 explicit PresentationSessionDispatcher(
19 presentation::PresentationSessionInfoPtr session_info);
20 ~PresentationSessionDispatcher();
21
22 const mojo::String& getUrl() const;
23 const mojo::String& getId() const;
24
25 private:
26 presentation::PresentationSessionInfoPtr session_info_;
27 };
28
29 } // namespace content
30
31 #endif // CONTENT_RENDERER_PRESENTATION_PRESENTATION_SESSION_DISPATCHER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698