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

Unified Diff: chrome/browser/net/http_server_properties_manager.h

Issue 375083002: Break out the IO thread aspects of HttpServerPropertiesManager into a new ChromeHttpServerPropertie… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/net/http_server_properties_manager.h
diff --git a/chrome/browser/net/http_server_properties_manager.h b/chrome/browser/net/http_server_properties_manager.h
index 71de395dc514cce6c8fa2789d795c25cef890449..8ead2166818a044d004e393fa41fda8302d6eb63 100644
--- a/chrome/browser/net/http_server_properties_manager.h
+++ b/chrome/browser/net/http_server_properties_manager.h
@@ -14,6 +14,7 @@
#include "base/prefs/pref_change_registrar.h"
#include "base/timer/timer.h"
#include "base/values.h"
+#include "chrome/browser/net/chrome_http_server_properties.h"
#include "net/base/host_port_pair.h"
#include "net/http/http_server_properties.h"
#include "net/http/http_server_properties_impl.h"
@@ -48,8 +49,7 @@ namespace chrome_browser_net {
// exists in UI, then a potential destruction on IO will come after any task
// posted to IO from that method on UI. This is used to go through IO before
// the actual update starts, and grab a WeakPtr.
-class HttpServerPropertiesManager
- : public net::HttpServerProperties {
+class HttpServerPropertiesManager {
public:
// Create an instance of the HttpServerPropertiesManager. The lifetime of the
// PrefService objects must be longer than that of the
@@ -72,95 +72,7 @@ class HttpServerPropertiesManager
static void SetVersion(base::DictionaryValue* http_server_properties_dict,
int version_number);
- // Deletes all data. Works asynchronously, but if a |completion| callback is
- // provided, it will be fired on the UI thread when everything is done.
- void Clear(const base::Closure& completion);
-
- // ----------------------------------
- // net::HttpServerProperties methods:
- // ----------------------------------
-
- // Gets a weak pointer for this object.
- virtual base::WeakPtr<net::HttpServerProperties> GetWeakPtr() OVERRIDE;
-
- // Deletes all data. Works asynchronously.
- virtual void Clear() OVERRIDE;
-
- // Returns true if |server| supports SPDY. Should only be called from IO
- // thread.
- virtual bool SupportsSpdy(const net::HostPortPair& server) OVERRIDE;
-
- // Add |server| as the SPDY server which supports SPDY protocol into the
- // persisitent store. Should only be called from IO thread.
- virtual void SetSupportsSpdy(const net::HostPortPair& server,
- bool support_spdy) OVERRIDE;
-
- // Returns true if |server| has an Alternate-Protocol header.
- virtual bool HasAlternateProtocol(const net::HostPortPair& server) OVERRIDE;
-
- // Returns the Alternate-Protocol and port for |server|.
- // HasAlternateProtocol(server) must be true.
- virtual net::PortAlternateProtocolPair GetAlternateProtocol(
- const net::HostPortPair& server) OVERRIDE;
-
- // Sets the Alternate-Protocol for |server|.
- virtual void SetAlternateProtocol(
- const net::HostPortPair& server,
- uint16 alternate_port,
- net::AlternateProtocol alternate_protocol) OVERRIDE;
-
- // Sets the Alternate-Protocol for |server| to be BROKEN.
- virtual void SetBrokenAlternateProtocol(
- const net::HostPortPair& server) OVERRIDE;
-
- // Returns true if Alternate-Protocol for |server| was recently BROKEN.
- virtual bool WasAlternateProtocolRecentlyBroken(
- const net::HostPortPair& server) OVERRIDE;
-
- // Confirms that Alternate-Protocol for |server| is working.
- virtual void ConfirmAlternateProtocol(
- const net::HostPortPair& server) OVERRIDE;
-
- // Clears the Alternate-Protocol for |server|.
- virtual void ClearAlternateProtocol(const net::HostPortPair& server) OVERRIDE;
-
- // Returns all Alternate-Protocol mappings.
- virtual const net::AlternateProtocolMap&
- alternate_protocol_map() const OVERRIDE;
-
- virtual void SetAlternateProtocolExperiment(
- net::AlternateProtocolExperiment experiment) OVERRIDE;
-
- virtual net::AlternateProtocolExperiment GetAlternateProtocolExperiment()
- const OVERRIDE;
-
- // Gets a reference to the SettingsMap stored for a host.
- // If no settings are stored, returns an empty SettingsMap.
- virtual const net::SettingsMap& GetSpdySettings(
- const net::HostPortPair& host_port_pair) OVERRIDE;
-
- // Saves an individual SPDY setting for a host. Returns true if SPDY setting
- // is to be persisted.
- virtual bool SetSpdySetting(const net::HostPortPair& host_port_pair,
- net::SpdySettingsIds id,
- net::SpdySettingsFlags flags,
- uint32 value) OVERRIDE;
-
- // Clears all SPDY settings for a host.
- virtual void ClearSpdySettings(
- const net::HostPortPair& host_port_pair) OVERRIDE;
-
- // Clears all SPDY settings for all hosts.
- virtual void ClearAllSpdySettings() OVERRIDE;
-
- // Returns all SPDY persistent settings.
- virtual const net::SpdySettingsMap& spdy_settings_map() const OVERRIDE;
-
- virtual void SetServerNetworkStats(const net::HostPortPair& host_port_pair,
- NetworkStats stats) OVERRIDE;
-
- virtual const NetworkStats* GetServerNetworkStats(
- const net::HostPortPair& host_port_pair) const OVERRIDE;
+ net::HttpServerProperties* http_server_properties();
protected:
// --------------------
@@ -180,33 +92,6 @@ class HttpServerPropertiesManager
// UpdateSpdyServersFromPrefsOnIO() to perform the update on IO thread.
virtual void UpdateCacheFromPrefsOnUI();
- // Starts the update of cached prefs in |http_server_properties_impl_| on the
- // IO thread. Protected for testing.
- void UpdateCacheFromPrefsOnIO(
- std::vector<std::string>* spdy_servers,
- net::SpdySettingsMap* spdy_settings_map,
- net::AlternateProtocolMap* alternate_protocol_map,
- net::AlternateProtocolExperiment alternate_protocol_experiment,
- bool detected_corrupted_prefs);
-
- // These are used to delay updating the preferences when cached data in
- // |http_server_properties_impl_| is changing, and execute only one update per
- // simultaneous spdy_servers or spdy_settings or alternate_protocol changes.
- void ScheduleUpdatePrefsOnIO();
-
- // Starts the timers to update the prefs from cache. This are overridden in
- // tests to prevent the delay.
- virtual void StartPrefsUpdateTimerOnIO(base::TimeDelta delay);
-
- // Update prefs::kHttpServerProperties in preferences with the cached data
- // from |http_server_properties_impl_|. This gets the data on IO thread and
- // posts a task (UpdatePrefsOnUI) to update the preferences UI thread.
- void UpdatePrefsFromCacheOnIO();
-
- // Same as above, but fires an optional |completion| callback on the UI thread
- // when finished. Virtual for testing.
- virtual void UpdatePrefsFromCacheOnIO(const base::Closure& completion);
-
// Update prefs::kHttpServerProperties preferences on UI thread. Executes an
// optional |completion| callback when finished. Protected for testing.
void UpdatePrefsOnUI(
@@ -218,9 +103,14 @@ class HttpServerPropertiesManager
private:
void OnHttpServerPropertiesChanged();
- // ---------
- // UI thread
- // ---------
+ // Helper method to invoke |UpdatePrefsOnUI| of |ui_weak_ptr| on the
+ // IO thread.
+ static void UpdatePrefsOnIO(
+ base::WeakPtr<HttpServerPropertiesManager> ui_weak_ptr,
+ base::ListValue* spdy_server_list,
+ net::SpdySettingsMap* spdy_settings_map,
+ net::AlternateProtocolMap* alternate_protocol_map,
+ const base::Closure& completion);
// Used to get |weak_ptr_| to self on the UI thread.
scoped_ptr<base::WeakPtrFactory<HttpServerPropertiesManager> >
@@ -237,19 +127,7 @@ class HttpServerPropertiesManager
PrefService* pref_service_; // Weak.
bool setting_prefs_;
- // ---------
- // IO thread
- // ---------
-
- // Used to get |weak_ptr_| to self on the IO thread.
- scoped_ptr<base::WeakPtrFactory<HttpServerPropertiesManager> >
- io_weak_ptr_factory_;
-
- // Used to post |prefs::kHttpServerProperties| pref update tasks.
- scoped_ptr<base::OneShotTimer<HttpServerPropertiesManager> >
- io_prefs_update_timer_;
-
- scoped_ptr<net::HttpServerPropertiesImpl> http_server_properties_impl_;
+ scoped_ptr<ChromeHttpServerProperties> http_server_properties_impl_;
DISALLOW_COPY_AND_ASSIGN(HttpServerPropertiesManager);
};
« no previous file with comments | « chrome/browser/net/chrome_http_server_properties.cc ('k') | chrome/browser/net/http_server_properties_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698