Chromium Code Reviews| Index: content/renderer/presentation/test_presentation_connection.cc |
| diff --git a/content/renderer/presentation/test_presentation_connection.cc b/content/renderer/presentation/test_presentation_connection.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f20234a77b661f4f23dbfeca7646af23deb9b545 |
| --- /dev/null |
| +++ b/content/renderer/presentation/test_presentation_connection.cc |
| @@ -0,0 +1,22 @@ |
| +// Copyright 2017 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/renderer/presentation/test_presentation_connection.h" |
| + |
| +#include "third_party/WebKit/public/platform/WebString.h" |
| +#include "third_party/WebKit/public/platform/modules/presentation/WebPresentationConnectionProxy.h" |
| +#include "third_party/WebKit/public/platform/modules/presentation/WebPresentationController.h" |
| + |
| +namespace content { |
| + |
| +TestPresentationConnection::TestPresentationConnection() {} |
| + |
| +TestPresentationConnection::~TestPresentationConnection() {} |
|
mlamouri (slow - plz ping)
2017/01/26 22:18:03
`= default` for both?
zhaobin
2017/01/26 22:48:14
Done.
|
| + |
| +void TestPresentationConnection::bindProxy( |
| + std::unique_ptr<blink::WebPresentationConnectionProxy> proxy) { |
| + proxy_ = std::move(proxy); |
| +} |
| + |
| +} // namespace content |