summaryrefslogtreecommitdiffstats
path: root/chrome/browser/net/chrome_url_request_context.h
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-06 01:55:48 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-06 01:55:48 +0000
commit7991a2336f3e5b975d5f31ffa24f129eb8bf32ad (patch)
tree52df10a63cfa787c42796566263fcb81c6517d4f /chrome/browser/net/chrome_url_request_context.h
parent6e82c3c6c3860a1005c96f4f6c138aa79a56d685 (diff)
downloadchromium_src-7991a2336f3e5b975d5f31ffa24f129eb8bf32ad.zip
chromium_src-7991a2336f3e5b975d5f31ffa24f129eb8bf32ad.tar.gz
chromium_src-7991a2336f3e5b975d5f31ffa24f129eb8bf32ad.tar.bz2
Seventh patch in making destructors of refcounted objects private.
BUG=26749 Review URL: http://codereview.chromium.org/371006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31192 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/net/chrome_url_request_context.h')
-rw-r--r--chrome/browser/net/chrome_url_request_context.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/net/chrome_url_request_context.h b/chrome/browser/net/chrome_url_request_context.h
index 0918cde..916e765 100644
--- a/chrome/browser/net/chrome_url_request_context.h
+++ b/chrome/browser/net/chrome_url_request_context.h
@@ -43,9 +43,6 @@ class ChromeURLRequestContextGetter : public URLRequestContextGetter,
ChromeURLRequestContextGetter(Profile* profile,
ChromeURLRequestContextFactory* factory);
- // Must be called on the IO thread.
- virtual ~ChromeURLRequestContextGetter();
-
// Note that GetURLRequestContext() can only be called from the IO
// thread (it will assert otherwise). GetCookieStore() however can
// be called from any thread.
@@ -100,6 +97,9 @@ class ChromeURLRequestContextGetter : public URLRequestContextGetter,
const NotificationDetails& details);
private:
+ // Must be called on the IO thread.
+ virtual ~ChromeURLRequestContextGetter();
+
// Registers an observer on |profile|'s preferences which will be used
// to update the context when the default language and charset change.
void RegisterPrefsObserver(Profile* profile);