summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/api/experimental.dns.idl
blob: 7fab5ad410fda8b677d68ff94c7e8a9937139188 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// File-level comment to appease parser. Eventually this will not be necessary.

[nodoc] namespace experimental.dns {

  dictionary ResolveCallbackResolveInfo {
    // The result code. Zero indicates success.
    long resultCode;

    // A string representing the IP address literal. Supplied only if resultCode
    // indicates success. Note that we presently return only IPv4 addresses.
    DOMString? address;
  };

  callback ResolveCallback = void (ResolveCallbackResolveInfo resolveInfo);

  interface Functions {
    // Resolves the given hostname or IP address literal.
    // |hostname| : The hostname to resolve.
    // |callback| : Called when the resolution operation completes.
    static void resolve(DOMString hostname,
                        ResolveCallback callback);
  };

};