| Index: components/clipboard/clipboard_application_delegate.cc
|
| diff --git a/components/clipboard/clipboard_application_delegate.cc b/components/clipboard/clipboard_application_delegate.cc
|
| index 9f3cde569324125b4e0dbec2665fa7f3e2d1ab45..fe148c72b2d32e74ff801e98d1957ae615446e8d 100644
|
| --- a/components/clipboard/clipboard_application_delegate.cc
|
| +++ b/components/clipboard/clipboard_application_delegate.cc
|
| @@ -7,7 +7,7 @@
|
| #include <utility>
|
|
|
| #include "components/clipboard/clipboard_standalone_impl.h"
|
| -#include "mojo/shell/public/cpp/application_connection.h"
|
| +#include "mojo/shell/public/cpp/connection.h"
|
|
|
| namespace clipboard {
|
|
|
| @@ -22,13 +22,13 @@ void ClipboardApplicationDelegate::Initialize(mojo::Shell* shell,
|
| }
|
|
|
| bool ClipboardApplicationDelegate::AcceptConnection(
|
| - mojo::ApplicationConnection* connection) {
|
| + mojo::Connection* connection) {
|
| connection->AddService(this);
|
| return true;
|
| }
|
|
|
| void ClipboardApplicationDelegate::Create(
|
| - mojo::ApplicationConnection* connection,
|
| + mojo::Connection* 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.
|
|
|