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

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

Issue 839773002: Plumbing from WebPresentationClient to the Presentation Mojo service for (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated comment Created 5 years, 11 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
new file mode 100644
index 0000000000000000000000000000000000000000..c106757562029e1620064e9d14833b0edf61ab85
--- /dev/null
+++ b/content/browser/presentation/presentation_service_impl.cc
@@ -0,0 +1,33 @@
+// 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.
+
+#include "content/browser/presentation/presentation_service_impl.h"
+
+#include "base/logging.h"
+
+namespace content {
+
+PresentationServiceImpl::PresentationServiceImpl() {
+}
+
+PresentationServiceImpl::~PresentationServiceImpl() {
+}
+
+// static
+void PresentationServiceImpl::CreateMojoService(
+ mojo::InterfaceRequest<presentation::PresentationService> request) {
+ mojo::BindToRequest(new PresentationServiceImpl(), &request);
+}
+
+void PresentationServiceImpl::GetScreenAvailability(
+ const mojo::String& presentation_url,
+ const AvailabilityCallback& callback) {
+ NOTIMPLEMENTED();
+}
+
+void PresentationServiceImpl::OnScreenAvailabilityListenerRemoved() {
+ NOTIMPLEMENTED();
+}
+
+} // namespace content
« 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