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

Unified Diff: chrome/common/extensions/api/experimental.dns.idl

Issue 9600050: Add IDL capability to json_schema_compiler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Patch Set TWO Created 8 years, 9 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/api.gyp ('k') | tools/json_schema_compiler/compiler.py » ('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
new file mode 100644
index 0000000000000000000000000000000000000000..7fab5ad410fda8b677d68ff94c7e8a9937139188
--- /dev/null
+++ b/chrome/common/extensions/api/experimental.dns.idl
@@ -0,0 +1,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);
+ };
+
+};
« no previous file with comments | « chrome/common/extensions/api/api.gyp ('k') | tools/json_schema_compiler/compiler.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698