| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_NET_HTTP_SERVER_PROPERTIES_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_NET_HTTP_SERVER_PROPERTIES_MANAGER_H_ |
| 6 #define CHROME_BROWSER_NET_HTTP_SERVER_PROPERTIES_MANAGER_H_ | 6 #define CHROME_BROWSER_NET_HTTP_SERVER_PROPERTIES_MANAGER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "base/prefs/public/pref_change_registrar.h" |
| 14 #include "base/timer.h" | 15 #include "base/timer.h" |
| 15 #include "base/values.h" | 16 #include "base/values.h" |
| 16 #include "chrome/browser/api/prefs/pref_change_registrar.h" | |
| 17 #include "content/public/browser/notification_observer.h" | 17 #include "content/public/browser/notification_observer.h" |
| 18 #include "net/base/host_port_pair.h" | 18 #include "net/base/host_port_pair.h" |
| 19 #include "net/http/http_pipelined_host_capability.h" | 19 #include "net/http/http_pipelined_host_capability.h" |
| 20 #include "net/http/http_server_properties.h" | 20 #include "net/http/http_server_properties.h" |
| 21 #include "net/http/http_server_properties_impl.h" | 21 #include "net/http/http_server_properties_impl.h" |
| 22 | 22 |
| 23 class PrefService; | 23 class PrefService; |
| 24 | 24 |
| 25 namespace chrome_browser_net { | 25 namespace chrome_browser_net { |
| 26 | 26 |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 io_prefs_update_timer_; | 219 io_prefs_update_timer_; |
| 220 | 220 |
| 221 scoped_ptr<net::HttpServerPropertiesImpl> http_server_properties_impl_; | 221 scoped_ptr<net::HttpServerPropertiesImpl> http_server_properties_impl_; |
| 222 | 222 |
| 223 DISALLOW_COPY_AND_ASSIGN(HttpServerPropertiesManager); | 223 DISALLOW_COPY_AND_ASSIGN(HttpServerPropertiesManager); |
| 224 }; | 224 }; |
| 225 | 225 |
| 226 } // namespace chrome_browser_net | 226 } // namespace chrome_browser_net |
| 227 | 227 |
| 228 #endif // CHROME_BROWSER_NET_HTTP_SERVER_PROPERTIES_MANAGER_H_ | 228 #endif // CHROME_BROWSER_NET_HTTP_SERVER_PROPERTIES_MANAGER_H_ |
| OLD | NEW |