summaryrefslogtreecommitdiff
path: root/chromium/net/log/test_net_log_util.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/log/test_net_log_util.h')
-rw-r--r--chromium/net/log/test_net_log_util.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/chromium/net/log/test_net_log_util.h b/chromium/net/log/test_net_log_util.h
index 96cb1ca2c3d..fb959314114 100644
--- a/chromium/net/log/test_net_log_util.h
+++ b/chromium/net/log/test_net_log_util.h
@@ -7,10 +7,10 @@
#include <stddef.h>
-#include "base/optional.h"
#include "base/strings/string_piece.h"
#include "net/log/net_log_event_type.h"
#include "testing/gtest/include/gtest/gtest.h"
+#include "third_party/abseil-cpp/absl/types/optional.h"
namespace base {
class ListValue;
@@ -75,14 +75,14 @@ size_t ExpectLogContainsSomewhereAfter(const std::vector<NetLogEntry>& entries,
// The following methods return a parameter of the given type at the given path,
// or nullopt if there is none.
-base::Optional<std::string> GetOptionalStringValueFromParams(
+absl::optional<std::string> GetOptionalStringValueFromParams(
const NetLogEntry& entry,
base::StringPiece path);
-base::Optional<bool> GetOptionalBooleanValueFromParams(const NetLogEntry& entry,
+absl::optional<bool> GetOptionalBooleanValueFromParams(const NetLogEntry& entry,
base::StringPiece path);
-base::Optional<int> GetOptionalIntegerValueFromParams(const NetLogEntry& entry,
+absl::optional<int> GetOptionalIntegerValueFromParams(const NetLogEntry& entry,
base::StringPiece path);
-base::Optional<int> GetOptionalNetErrorCodeFromParams(const NetLogEntry& entry);
+absl::optional<int> GetOptionalNetErrorCodeFromParams(const NetLogEntry& entry);
// Same as the *Optional* versions above, except will add a Gtest failure if the
// value was not present, and then return some default.