diff options
author | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-16 18:56:09 +0000 |
---|---|---|
committer | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-16 18:56:09 +0000 |
commit | 84a12e448f6e54b2ed026e2b34bb73474e6dcf72 (patch) | |
tree | 2d60323b17ef47a7d7d1c7094e7264cbfae44a23 /net/base | |
parent | fc160d4b5fe40e5deb3b722fc27dd17a9dc49cd5 (diff) | |
download | chromium_src-84a12e448f6e54b2ed026e2b34bb73474e6dcf72.zip chromium_src-84a12e448f6e54b2ed026e2b34bb73474e6dcf72.tar.gz chromium_src-84a12e448f6e54b2ed026e2b34bb73474e6dcf72.tar.bz2 |
Revert 75143 - Reland r74842
The bug was that the ProfilePolicyContext was getting initialized before the ProfileImplIOData::Handle was initialized.
BUG=67237
TEST=none
Review URL: http://codereview.chromium.org/6526029
TBR=willchan@chromium.org
Review URL: http://codereview.chromium.org/6480120
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75152 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base')
-rw-r--r-- | net/base/cookie_policy.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/base/cookie_policy.h b/net/base/cookie_policy.h index 43b689f..c32c8a9 100644 --- a/net/base/cookie_policy.h +++ b/net/base/cookie_policy.h @@ -21,8 +21,6 @@ enum { class CookiePolicy { public: - virtual ~CookiePolicy() {} - // Determines if the URL's cookies may be read. // // Returns: @@ -59,6 +57,9 @@ class CookiePolicy { const GURL& first_party_for_cookies, const std::string& cookie_line, CompletionCallback* callback) = 0; + + protected: + virtual ~CookiePolicy() {} }; } // namespace net |