summaryrefslogtreecommitdiff
path: root/chromium/net/cookies/cookie_deletion_info.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/cookies/cookie_deletion_info.h')
-rw-r--r--chromium/net/cookies/cookie_deletion_info.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/chromium/net/cookies/cookie_deletion_info.h b/chromium/net/cookies/cookie_deletion_info.h
index 13865421490..30c46a63cd8 100644
--- a/chromium/net/cookies/cookie_deletion_info.h
+++ b/chromium/net/cookies/cookie_deletion_info.h
@@ -8,10 +8,10 @@
#include <set>
#include <string>
-#include "base/optional.h"
#include "base/time/time.h"
#include "net/cookies/canonical_cookie.h"
#include "net/cookies/cookie_constants.h"
+#include "third_party/abseil-cpp/absl/types/optional.h"
namespace net {
@@ -110,14 +110,14 @@ struct NET_EXPORT CookieDeletionInfo {
SessionControl session_control = SessionControl::IGNORE_CONTROL;
// If has a value then cookie.Host() must equal |host|.
- base::Optional<std::string> host;
+ absl::optional<std::string> host;
// If has a value then cookie.Name() must equal |name|.
- base::Optional<std::string> name;
+ absl::optional<std::string> name;
// If has a value then will match if the cookie being evaluated would be
// included for a request of |url|.
- base::Optional<GURL> url;
+ absl::optional<GURL> url;
// If this is not empty then any cookie with a domain/ip contained in this
// will be deleted (assuming other fields match).
@@ -138,7 +138,7 @@ struct NET_EXPORT CookieDeletionInfo {
std::set<std::string> domains_and_ips_to_ignore;
// Used only for testing purposes.
- base::Optional<std::string> value_for_testing;
+ absl::optional<std::string> value_for_testing;
};
} // namespace net