| Index: net/cookies/cookie_options.h
|
| diff --git a/net/cookies/cookie_options.h b/net/cookies/cookie_options.h
|
| index a7ed5a9aac64eca34e4223799a698fdd5581ee43..d3d7fd056b71a05cc92e322b10d8d8f7d47991a9 100644
|
| --- a/net/cookies/cookie_options.h
|
| +++ b/net/cookies/cookie_options.h
|
| @@ -7,11 +7,13 @@
|
| #ifndef NET_COOKIES_COOKIE_OPTIONS_H_
|
| #define NET_COOKIES_COOKIE_OPTIONS_H_
|
|
|
| +#include "base/time/time.h"
|
| +#include "net/base/net_export.h"
|
| #include "url/gurl.h"
|
|
|
| namespace net {
|
|
|
| -class CookieOptions {
|
| +class NET_EXPORT CookieOptions {
|
| public:
|
| // Default is to exclude httponly completely, and exclude first-party from
|
| // being read, which means:
|
| @@ -21,10 +23,7 @@ class CookieOptions {
|
| //
|
| // If a first-party URL is set, then first-party cookies which match that URL
|
| // will be returned.
|
| - CookieOptions()
|
| - : exclude_httponly_(true),
|
| - include_first_party_only_(false),
|
| - server_time_() {}
|
| + CookieOptions();
|
|
|
| void set_exclude_httponly() { exclude_httponly_ = true; }
|
| void set_include_httponly() { exclude_httponly_ = false; }
|
|
|