29 lines
838 B
Plaintext
Executable File
29 lines
838 B
Plaintext
Executable File
// Copyright 2014 The Chromium Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// Use the <code>chrome.dns</code> API for dns resolution.
|
|
namespace dns {
|
|
|
|
dictionary ResolveCallbackResolveInfo {
|
|
// The result code. Zero indicates success.
|
|
long resultCode;
|
|
|
|
// A string representing the IP address literal. Supplied only if resultCode
|
|
// indicates success.
|
|
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);
|
|
};
|
|
|
|
};
|