| 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_;
|
| +}
|
|
|