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

Unified Diff: content/browser/presentation/presentation_service_impl.cc

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
« no previous file with comments | « content/browser/presentation/presentation_service_impl.h ('k') | content/common/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/presentation/presentation_service_impl.cc
diff --git a/content/browser/presentation/presentation_service_impl.cc b/content/browser/presentation/presentation_service_impl.cc
index 02e2773080adf269686f341838ed690469a7c15e..4a1db13ea7a41d8e8d79981ecfe079f8b731a41a 100644
--- a/content/browser/presentation/presentation_service_impl.cc
+++ b/content/browser/presentation/presentation_service_impl.cc
@@ -99,6 +99,20 @@ void PresentationServiceImpl::OnScreenAvailabilityListenerRemoved() {
NOTIMPLEMENTED();
}
+void PresentationServiceImpl::StartSession(
+ const mojo::String& presentation_url,
+ const mojo::String& presentation_id,
+ const NewSessionMojoCallback& callback) {
+ NOTIMPLEMENTED();
+}
+
+void PresentationServiceImpl::JoinSession(
+ const mojo::String& presentation_url,
+ const mojo::String& presentation_id,
+ const NewSessionMojoCallback& callback) {
+ NOTIMPLEMENTED();
+}
+
void PresentationServiceImpl::DidNavigateAnyFrame(
content::RenderFrameHost* render_frame_host,
const content::LoadCommittedDetails& details,
« no previous file with comments | « content/browser/presentation/presentation_service_impl.h ('k') | content/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698