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

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: resolve code review comments from mlamouri 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
« no previous file with comments | « content/renderer/presentation/test_presentation_connection.h ('k') | content/test/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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() = default;
14
15 TestPresentationConnection::~TestPresentationConnection() = default;
16
17 void TestPresentationConnection::bindProxy(
18 std::unique_ptr<blink::WebPresentationConnectionProxy> proxy) {
19 proxy_ = std::move(proxy);
20 }
21
22 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/presentation/test_presentation_connection.h ('k') | content/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698