Chromium Code Reviews| 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..e9ff2632fcd5c3429b3825db5190a05225563b21 |
| --- /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::CreateService( |
| + mojo::InterfaceRequest<presentation::PresentationService> request) { |
| + mojo::BindToRequest(new PresentationServiceImpl(), &request); |
| +} |
| + |
| +void PresentationServiceImpl::SetClient( |
| + presentation::PresentationServiceClientPtr) { |
|
mlamouri (slow - plz ping)
2015/01/15 11:40:13
nit: add a name
whywhat
2015/01/25 23:06:31
Done.
|
| + NOTIMPLEMENTED(); |
| +} |
| + |
| + |
| +void PresentationServiceImpl::UpdateAvailableChangeWatched(bool) { |
|
mlamouri (slow - plz ping)
2015/01/15 11:40:13
nit: add a name
whywhat
2015/01/25 23:06:31
Done.
|
| + NOTIMPLEMENTED(); |
| +} |
| + |
| +} // namespace content |