OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
haraken
2017/01/13 04:01:24
2017
zhaobin
2017/01/18 18:25:47
Done.
| |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef WebPresentationConnectionProxy_h | |
6 #define WebPresentationConnectionProxy_h | |
7 | |
8 namespace blink { | |
9 | |
10 // The implementation the embedder has to provide for the Presentation API to | |
11 // work. This class is used to send messages to a PresentationConnection hosted | |
12 // in a different frame. | |
13 class WebPresentationConnectionProxy { | |
14 public: | |
15 virtual ~WebPresentationConnectionProxy() = default; | |
16 }; | |
17 | |
18 } // namespace blink | |
19 | |
20 #endif // WebPresentationConnectionProxy_h | |
OLD | NEW |