diff options
Diffstat (limited to 'net/base/cookie_monster.h')
-rw-r--r-- | net/base/cookie_monster.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/base/cookie_monster.h b/net/base/cookie_monster.h index c9e48d7..580e176 100644 --- a/net/base/cookie_monster.h +++ b/net/base/cookie_monster.h @@ -53,7 +53,7 @@ class CookieMonster { public: // Default is to exclude httponly, which means: // - reading operations will not return httponly cookies. - // - writing operations will not write httponly cookies. + // - writing operations will not write httponly cookies. CookieOptions() : exclude_httponly_(true) {} void set_exclude_httponly() { exclude_httponly_ = true; } void set_include_httponly() { exclude_httponly_ = false; } |