summaryrefslogtreecommitdiffstats
path: root/components/clipboard/clipboard_application_delegate.cc
blob: ad8fec01d4409acd50808b405662cb1d55adec5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// 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 "components/clipboard/clipboard_application_delegate.h"

#include "components/clipboard/clipboard_standalone_impl.h"
#include "mojo/application/public/cpp/application_connection.h"

namespace clipboard {

ClipboardApplicationDelegate::ClipboardApplicationDelegate() {}

ClipboardApplicationDelegate::~ClipboardApplicationDelegate() {}

bool ClipboardApplicationDelegate::ConfigureIncomingConnection(
    mojo::ApplicationConnection* connection) {
  connection->AddService(this);
  return true;
}

void ClipboardApplicationDelegate::Create(
    mojo::ApplicationConnection* connection,
    mojo::InterfaceRequest<mojo::Clipboard> request) {
  // TODO(erg): Write native implementations of the clipboard. For now, we
  // just build a clipboard which doesn't interact with the system.
  new clipboard::ClipboardStandaloneImpl(request.Pass());
}

}  // namespace clipboard