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

Unified Diff: chrome/browser/extensions/api/networking_config/networking_config_apitest_chromeos.cc

Issue 880073002: Networking.config: Implementation of the NetworkingConfigService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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/browser/extensions/api/networking_config/networking_config_apitest_chromeos.cc
diff --git a/chrome/browser/extensions/api/networking_config/networking_config_apitest_chromeos.cc b/chrome/browser/extensions/api/networking_config/networking_config_apitest_chromeos.cc
new file mode 100644
index 0000000000000000000000000000000000000000..a87ed7b0cff88523d43f13b7b3a64449977a2b21
--- /dev/null
+++ b/chrome/browser/extensions/api/networking_config/networking_config_apitest_chromeos.cc
@@ -0,0 +1,27 @@
+// 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.
+
+#include <string>
+
+#include "chrome/browser/extensions/extension_apitest.h"
+
+namespace {
+
+class NetworkingConfigTest : public ExtensionApiTest {
+ public:
+ NetworkingConfigTest() {}
+};
+
+} // namespace
+
+IN_PROC_BROWSER_TEST_F(NetworkingConfigTest, ApiAvailability) {
+ ASSERT_TRUE(RunExtensionSubtest("networking_config", "api_availability.html"))
+ << message_;
+}
+
+IN_PROC_BROWSER_TEST_F(NetworkingConfigTest, RegisterNetworks) {
+ ASSERT_TRUE(
+ RunExtensionSubtest("networking_config", "register_networks.html"))
+ << message_;
+}

Powered by Google App Engine
This is Rietveld 408576698