aboutsummaryrefslogtreecommitdiff
path: root/image_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'image_utils.h')
-rw-r--r--image_utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/image_utils.h b/image_utils.h
index b34b9dc..3d4a83a 100644
--- a/image_utils.h
+++ b/image_utils.h
@@ -13,10 +13,10 @@
#include "base/format_macros.h"
#include "base/macros.h"
#include "base/numerics/safe_conversions.h"
-#include "base/optional.h"
#include "base/strings/stringprintf.h"
#include "components/zucchini/buffer_view.h"
#include "components/zucchini/typed_value.h"
+#include "third_party/abseil-cpp/absl/types/optional.h"
namespace zucchini {
@@ -94,7 +94,7 @@ class ReferenceReader {
// Returns the next available Reference, or nullopt_t if exhausted.
// Extracted References must be ordered by their location in the image.
- virtual base::Optional<Reference> GetNext() = 0;
+ virtual absl::optional<Reference> GetNext() = 0;
};
// Interface for writing References through member function