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

Side by Side Diff: extensions/browser/api/networking_config/networking_config_api.h

Issue 880073002: Networking.config: Implementation of the NetworkingConfigService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: adressed comments by kalman, stevenjb and asvitkine Created 5 years, 10 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 unified diff | Download patch
OLDNEW
(Empty)
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.
4
5 #ifndef EXTENSIONS_BROWSER_API_NETWORKING_CONFIG_NETWORKING_CONFIG_API_H_
6 #define EXTENSIONS_BROWSER_API_NETWORKING_CONFIG_NETWORKING_CONFIG_API_H_
7
8 #include "extensions/common/api/networking_config.h"
9 #include "extensions/browser/extension_function.h"
10
11 namespace extensions {
12
13 class NetworkingConfigSetNetworkFilterFunction
14 : public UIThreadExtensionFunction {
15 public:
16 NetworkingConfigSetNetworkFilterFunction();
17
18 ResponseAction Run() override;
19
20 DECLARE_EXTENSION_FUNCTION("networking.config.setNetworkFilter",
21 NETWORKING_CONFIG_SETNETWORKFILTER);
22
23 protected:
24 ~NetworkingConfigSetNetworkFilterFunction() override;
25
26 scoped_ptr<core_api::networking_config::SetNetworkFilter::Params>
27 parameters_;
28
29 private:
30 DISALLOW_COPY_AND_ASSIGN(NetworkingConfigSetNetworkFilterFunction);
31 };
32
33 class NetworkingConfigFinishAuthenticationFunction
34 : public UIThreadExtensionFunction {
35 public:
36 NetworkingConfigFinishAuthenticationFunction();
37
38 ResponseAction Run() override;
39
40 DECLARE_EXTENSION_FUNCTION("networking.config.finishAuthenticationFunction",
41 NETWORKING_CONFIG_FINISHAUTHENTICATION);
42
43 protected:
44 ~NetworkingConfigFinishAuthenticationFunction() override;
45
46 scoped_ptr<core_api::networking_config::FinishAuthentication::Params>
47 parameters_;
48
49 private:
50 DISALLOW_COPY_AND_ASSIGN(NetworkingConfigFinishAuthenticationFunction);
51 };
52
53 } // namespace extensions
54
55 #endif // EXTENSIONS_BROWSER_API_NETWORKING_CONFIG_NETWORKING_CONFIG_API_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698