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

Unified Diff: chrome/common/extensions/api/experimental_dns.idl

Issue 23867002: Move dns API to dev channel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adding missing dns.idl file Created 7 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/extensions/api/dns.idl ('k') | chrome/common/extensions/api/extension_api_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
- };
-
-};
« no previous file with comments | « chrome/common/extensions/api/dns.idl ('k') | chrome/common/extensions/api/extension_api_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698