diff options
Diffstat (limited to 'net/base/cookie_policy.h')
-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 |