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

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

Issue 389633002: Move system.* family of APIs to extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed gn build Created 6 years, 5 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
Index: chrome/common/extensions/api/system_network.idl
diff --git a/chrome/common/extensions/api/system_network.idl b/chrome/common/extensions/api/system_network.idl
deleted file mode 100644
index bbc28ae9dd51d2e16ed606bdb5392615fcdcd78f..0000000000000000000000000000000000000000
--- a/chrome/common/extensions/api/system_network.idl
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright 2013 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.
-
-// Use the <code>chrome.system.network</code> API.
-namespace system.network {
- dictionary NetworkInterface {
- // The underlying name of the adapter. On *nix, this will typically be
- // "eth0", "wlan0", etc.
- DOMString name;
-
- // The available IPv4/6 address.
- DOMString address;
-
- // The prefix length
- long prefixLength;
- };
-
- // Callback from the <code>getNetworkInterfaces</code> method.
- // |networkInterfaces| : Array of object containing network interfaces
- // information.
- callback GetNetworkInterfacesCallback =
- void (NetworkInterface[] networkInterfaces);
-
- interface Functions {
- // Retrieves information about local adapters on this system.
- // |callback| : Called when local adapter information is available.
- static void getNetworkInterfaces(GetNetworkInterfacesCallback callback);
- };
-};

Powered by Google App Engine
This is Rietveld 408576698