Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(257)

Side by Side Diff: content/renderer/presentation/test_presentation_connection.cc

Issue 2471263003: [Presentation API] (4th)(1-UA blink side) Add WebPresentationConnection and WebPresentationConnecti… (Closed)
Patch Set: fix windows compile error and layout test failures Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698