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

Side by Side Diff: public/platform/modules/navigator_services/WebServicePort.h

Issue 1191393003: Update client side navigator.connect API to use ServicePortCollection [1/3] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@serviceport
Patch Set: address more comments Created 5 years, 6 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 2015 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 #ifndef WebServicePort_h
6 #define WebServicePort_h
7
8 #include "public/platform/WebURL.h"
9
10 namespace blink {
11
12 using WebServicePortID = int;
13
14 // Struct containing the data representing a ServicePort.
15 struct WebServicePort {
16 // Members corresponding to ServicePort.idl attributes.
17 WebURL targetUrl;
18 WebString name;
19 WebString data;
20
21 // Unique ID to identify this port.
22 WebServicePortID id = -1;
23 };
24
25 } // namespace blink
26
27 #endif // WebServicePort_h
OLDNEW
« no previous file with comments | « public/platform/modules/navigator_services/OWNERS ('k') | public/platform/modules/navigator_services/WebServicePortProvider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698