summaryrefslogtreecommitdiff
path: root/chromium/net/cookies/cookie_deletion_info.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2021-09-03 13:32:17 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2021-10-01 14:31:55 +0200
commit21ba0c5d4bf8fba15dddd97cd693bad2358b77fd (patch)
tree91be119f694044dfc1ff9fdc054459e925de9df0 /chromium/net/cookies/cookie_deletion_info.h
parent03c549e0392f92c02536d3f86d5e1d8dfa3435ac (diff)
downloadqtwebengine-chromium-21ba0c5d4bf8fba15dddd97cd693bad2358b77fd.tar.gz
BASELINE: Update Chromium to 92.0.4515.166
Change-Id: I42a050486714e9e54fc271f2a8939223a02ae364
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