Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 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 "content/renderer/presentation/test_presentation_connection.h" | |
| 6 | |
| 7 #include "third_party/WebKit/public/platform/WebString.h" | |
| 8 #include "third_party/WebKit/public/platform/modules/presentation/WebPresentatio nConnectionProxy.h" | |
| 9 #include "third_party/WebKit/public/platform/modules/presentation/WebPresentatio nController.h" | |
| 10 | |
| 11 namespace content { | |
| 12 | |
| 13 TestPresentationConnection::TestPresentationConnection() {} | |
| 14 | |
| 15 TestPresentationConnection::~TestPresentationConnection() {} | |
|
mlamouri (slow - plz ping)
2017/01/26 22:18:03
`= default` for both?
zhaobin
2017/01/26 22:48:14
Done.
| |
| 16 | |
| 17 void TestPresentationConnection::bindProxy( | |
| 18 std::unique_ptr<blink::WebPresentationConnectionProxy> proxy) { | |
| 19 proxy_ = std::move(proxy); | |
| 20 } | |
| 21 | |
| 22 } // namespace content | |
| OLD | NEW |