1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef EXTENSIONS_BROWSER_API_NETWORKING_CONFIG_NETWORKING_CONFIG_API_H_
6 #define EXTENSIONS_BROWSER_API_NETWORKING_CONFIG_NETWORKING_CONFIG_API_H_
8 #include "extensions/common/api/networking_config.h"
9 #include "extensions/browser/extension_function.h"
11 namespace extensions
{
13 class NetworkingConfigSetNetworkFilterFunction
14 : public UIThreadExtensionFunction
{
16 NetworkingConfigSetNetworkFilterFunction();
18 ResponseAction
Run() override
;
20 DECLARE_EXTENSION_FUNCTION("networking.config.setNetworkFilter",
21 NETWORKING_CONFIG_SETNETWORKFILTER
);
24 ~NetworkingConfigSetNetworkFilterFunction() override
;
26 scoped_ptr
<core_api::networking_config::SetNetworkFilter::Params
>
30 DISALLOW_COPY_AND_ASSIGN(NetworkingConfigSetNetworkFilterFunction
);
33 class NetworkingConfigFinishAuthenticationFunction
34 : public UIThreadExtensionFunction
{
36 NetworkingConfigFinishAuthenticationFunction();
38 ResponseAction
Run() override
;
40 DECLARE_EXTENSION_FUNCTION("networking.config.finishAuthentication",
41 NETWORKING_CONFIG_FINISHAUTHENTICATION
);
44 ~NetworkingConfigFinishAuthenticationFunction() override
;
46 scoped_ptr
<core_api::networking_config::FinishAuthentication::Params
>
50 DISALLOW_COPY_AND_ASSIGN(NetworkingConfigFinishAuthenticationFunction
);
53 } // namespace extensions
55 #endif // EXTENSIONS_BROWSER_API_NETWORKING_CONFIG_NETWORKING_CONFIG_API_H_