diff options
author | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-28 00:40:11 +0000 |
---|---|---|
committer | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-28 00:40:11 +0000 |
commit | 929935b8e40b7441d72e720752cbe5fcd99e4432 (patch) | |
tree | 956cc74d84b977c061378cb711c54adda89ea2e9 /chrome/common | |
parent | ea6f72a97cc771f6d4ecd3f32fbba8e678a0127f (diff) | |
download | chromium_src-929935b8e40b7441d72e720752cbe5fcd99e4432.zip chromium_src-929935b8e40b7441d72e720752cbe5fcd99e4432.tar.gz chromium_src-929935b8e40b7441d72e720752cbe5fcd99e4432.tar.bz2 |
Reland r59972: Eagerly set the IO loop used for OCSP.
ChromeOS will create a special Profile for login. Previously, OCSP initialization was done for the "default" ChromeURLRequestContext for each Profile. Since we can have multiple profiles, this causes the initialization (and uninitialization) to happen multiple times, which causes problems for OCSP since we use statics. The solution is to identify the "main" Profile. We create said Profile in BrowserMain. I add an "is_main_" variable to URLRequestContextGetter and URLRequestContext, so that only the "main" URLRequestContext will initialize OCSP.
The only change from r59972 is the location that I set_is_main(). I set it when we set the default request context. This is because, by the time I had called set_is_main() in BrowserMain, the ChromeURLRequestContextGetter was already created (it gets created during the CreateProfile() function). So I was too late.
BUG=55940
TEST=Manual
Review URL: http://codereview.chromium.org/3391028
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@60739 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/net/url_request_context_getter.h | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/chrome/common/net/url_request_context_getter.h b/chrome/common/net/url_request_context_getter.h index 34aa668..8b51a0b 100644 --- a/chrome/common/net/url_request_context_getter.h +++ b/chrome/common/net/url_request_context_getter.h @@ -35,15 +35,32 @@ class URLRequestContextGetter // may be used). virtual scoped_refptr<base::MessageLoopProxy> GetIOMessageLoopProxy() = 0; + // Controls whether or not the URLRequestContextGetter considers itself to be + // the the "main" URLRequestContextGetter. Note that each Profile will have a + // "default" URLRequestContextGetter. Therefore, "is_main" refers to the + // default URLRequestContextGetter for the "main" Profile. + // TODO(willchan): Move this code to ChromeURLRequestContextGetter, since this + // ia a browser process specific concept. + void set_is_main(bool is_main) { is_main_ = is_main; } + protected: friend class DeleteTask<URLRequestContextGetter>; friend struct URLRequestContextGetterTraits; + URLRequestContextGetter() : is_main_(false) {} + virtual ~URLRequestContextGetter() {} + + bool is_main() const { return is_main_; } + private: // OnDestruct is meant to ensure deletion on the thread on which the request // IO happens. void OnDestruct(); + + // Indicates whether or not this is the default URLRequestContextGetter for + // the main Profile. + bool is_main_; }; struct URLRequestContextGetterTraits { @@ -53,4 +70,3 @@ struct URLRequestContextGetterTraits { }; #endif // CHROME_COMMON_NET_URL_REQUEST_CONTEXT_GETTER_H_ - |