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

Unified Diff: chrome/test/data/extensions/api_test/mdns/api/get_max_service_instances.js

Issue 1040773002: Limit number of service instances passed to onServiceList listeners. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add testing:: prefix before MakeMatcher to fix windows build Created 5 years, 8 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/test/data/extensions/api_test/mdns/api/get_max_service_instances.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/api_test/mdns/api/get_max_service_instances.js
diff --git a/chrome/test/data/extensions/api_test/mdns/api/get_max_service_instances.js b/chrome/test/data/extensions/api_test/mdns/api/get_max_service_instances.js
new file mode 100644
index 0000000000000000000000000000000000000000..03cd0c8339e729840468057f89d4a9ce290ff321
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/mdns/api/get_max_service_instances.js
@@ -0,0 +1,13 @@
+// Copyright 2015 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.
+
+onload = function() {
+ chrome.test.runTests([
+ function getMaxServiceInstancesPerEvent() {
+ // Ensure that the constant is actually set.
+ chrome.test.assertTrue(chrome.mdns.MAX_SERVICE_INSTANCES_PER_EVENT > 0);
+ chrome.test.notifyPass();
+ }
+ ]);
+};
« no previous file with comments | « chrome/test/data/extensions/api_test/mdns/api/get_max_service_instances.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698