OLD | NEW |
(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 #include "components/clipboard/clipboard_application_delegate.h" |
| 6 |
| 7 #include "components/clipboard/clipboard_standalone_impl.h" |
| 8 #include "third_party/mojo/src/mojo/public/cpp/application/application_connectio
n.h" |
| 9 |
| 10 namespace clipboard { |
| 11 |
| 12 ClipboardApplicationDelegate::ClipboardApplicationDelegate() {} |
| 13 |
| 14 ClipboardApplicationDelegate::~ClipboardApplicationDelegate() {} |
| 15 |
| 16 bool ClipboardApplicationDelegate::ConfigureIncomingConnection( |
| 17 mojo::ApplicationConnection* connection) { |
| 18 connection->AddService(this); |
| 19 return true; |
| 20 } |
| 21 |
| 22 void ClipboardApplicationDelegate::Create( |
| 23 mojo::ApplicationConnection* connection, |
| 24 mojo::InterfaceRequest<mojo::Clipboard> request) { |
| 25 // TODO(erg): Write native implementations of the clipboard. For now, we |
| 26 // just build a clipboard which doesn't interact with the system. |
| 27 new clipboard::ClipboardStandaloneImpl(request.Pass()); |
| 28 } |
| 29 |
| 30 } // namespace clipboard |
OLD | NEW |