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

Unified Diff: third_party/WebKit/Source/core/testing/NetInfo.idl

Issue 2903493002: NetInfo network quality extension: Add callbacks and Layout tests (Closed)
Patch Set: Rebased, Use enum instead of string Created 3 years, 7 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: third_party/WebKit/Source/core/testing/NetInfo.idl
diff --git a/third_party/WebKit/Source/core/testing/NetInfo.idl b/third_party/WebKit/Source/core/testing/NetInfo.idl
new file mode 100644
index 0000000000000000000000000000000000000000..3c8a31b648ae930e7cbfc6e19a8a19712e0caaff
--- /dev/null
+++ b/third_party/WebKit/Source/core/testing/NetInfo.idl
@@ -0,0 +1,13 @@
+// Copyright 2017 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.
+
+enum EffectiveConnectionType {
haraken 2017/06/02 04:03:56 Can we move this enum to Internals.idl? We don't
tbansal1 2017/06/02 04:42:11 Done.
+ "slow-2g",
+ "2g",
+ "3g",
+ "4g"
+};
+
+interface NetInfo {
+};

Powered by Google App Engine
This is Rietveld 408576698