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

Unified Diff: net/url_request/https_prober.h

Issue 5634005: Add a new GetInstance() method for singleton classes under chrome/service and /net. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 10 years 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
« no previous file with comments | « net/spdy/spdy_stream.cc ('k') | net/url_request/https_prober.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/https_prober.h
diff --git a/net/url_request/https_prober.h b/net/url_request/https_prober.h
index 166791105a94bfdca0c42a36dcf043d9e0f7df48..5d1a6222dd4b5feb18740e26795a6c81dd2fa517 100644
--- a/net/url_request/https_prober.h
+++ b/net/url_request/https_prober.h
@@ -10,10 +10,10 @@
#include <set>
#include <string>
-#include "base/singleton.h"
#include "base/task.h"
#include "net/url_request/url_request.h"
+template <typename T> struct DefaultSingletonTraits;
class URLRequestContext;
namespace net {
@@ -33,8 +33,8 @@ class HTTPSProberDelegate {
// transparently upgrading from HTTP to HTTPS (for example, for SPDY).
class HTTPSProber : public net::URLRequest::Delegate {
public:
- HTTPSProber();
- ~HTTPSProber();
+ // Returns the singleton instance.
+ static HTTPSProber* GetInstance();
// HaveProbed returns true if the given host is known to have been probed
// since the browser was last started.
@@ -62,6 +62,9 @@ class HTTPSProber : public net::URLRequest::Delegate {
virtual void OnReadCompleted(net::URLRequest* request, int bytes_read);
private:
+ HTTPSProber();
+ ~HTTPSProber();
+
void Success(net::URLRequest* request);
void Failure(net::URLRequest* request);
void DoCallback(net::URLRequest* request, bool result);
« no previous file with comments | « net/spdy/spdy_stream.cc ('k') | net/url_request/https_prober.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698