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

Side by Side Diff: chrome/browser/net/http_server_properties_manager_factory.h

Issue 378823002: Move http_server_properties_manager from chrome/browser/net to net/http. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix renames in comments. Created 6 years, 5 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 2014 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 CHROME_BROWSER_NET_HTTP_SERVER_PROPERTIES_MANAGER_FACTORY_H_
6 #define CHROME_BROWSER_NET_HTTP_SERVER_PROPERTIES_MANAGER_FACTORY_H_
7
8 #include "base/macros.h"
9
10 class PrefService;
11
12 namespace net {
13 class HttpServerPropertiesManager;
14 }
15
16 namespace user_prefs {
17 class PrefRegistrySyncable;
18 }
19
20 namespace chrome_browser_net {
21
22 ////////////////////////////////////////////////////////////////////////////////
23 // Class for registration and creation of HttpServerPropertiesManager
24 class HttpServerPropertiesManagerFactory {
25 public:
26 // Create an instance of HttpServerPropertiesManager.
27 static net::HttpServerPropertiesManager* CreateManager(
28 PrefService* pref_service);
29
30 // Register prefs for properties managed by HttpServerPropertiesManager.
31 static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
32
33 private:
34 DISALLOW_IMPLICIT_CONSTRUCTORS(HttpServerPropertiesManagerFactory);
35 };
36
37 } // namespace chrome_browser_net
38
39 #endif // CHROME_BROWSER_NET_HTTP_SERVER_PROPERTIES_MANAGER_FACTORY_H_
OLDNEW
« no previous file with comments | « chrome/browser/net/http_server_properties_manager.cc ('k') | chrome/browser/net/http_server_properties_manager_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698