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

Side by Side Diff: net/dns/host_resolver.mojom

Issue 862813002: WIP: Prototype OOP V8 PAC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Slight cleanup and report JS memory usage. Created 5 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 | « net/DEPS ('k') | net/dns/host_resolver_mojo.h » ('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 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 module net.dns;
6
7 struct RequestInfo {
8 string host_port_pair;
9 int32 address_family;
10 // ...
11 };
12
13 struct AddressList {
14 // Also send the port?
15 array<array<uint8>> addresses;
16 string canonical_name;
17 };
18
19 interface Resolver {
20 Resolve(RequestInfo request_info, ResolveRequestClient client);
21 };
22
23 interface ResolverClient {
24 };
25
26 interface ResolveRequestClient {
27 ReportResult(AddressList result);
28 ReportError(int32 error);
29 // AppendLog(???);
30 };
OLDNEW
« no previous file with comments | « net/DEPS ('k') | net/dns/host_resolver_mojo.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698