Index: chrome/common/extensions/api/experimental_dns.idl |
diff --git a/chrome/common/extensions/api/experimental_dns.idl b/chrome/common/extensions/api/experimental_dns.idl |
deleted file mode 100644 |
index 04de6ad6cf59fe958b9a66a2969a78b08bcee6cd..0000000000000000000000000000000000000000 |
--- a/chrome/common/extensions/api/experimental_dns.idl |
+++ /dev/null |
@@ -1,27 +0,0 @@ |
-// 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. |
- |
-// Experimental.dns. |
-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); |
- }; |
- |
-}; |