| Index: third_party/chrome/idl/experimental_dns.idl
|
| diff --git a/third_party/chrome/idl/experimental_dns.idl b/third_party/chrome/idl/experimental_dns.idl
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..23c5c4bbf46a81f10b236fa4cbd240e6f32c3be9
|
| --- /dev/null
|
| +++ b/third_party/chrome/idl/experimental_dns.idl
|
| @@ -0,0 +1,26 @@
|
| +// 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.
|
| +
|
| +[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);
|
| + };
|
| +
|
| +};
|
|
|