summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/frame/frame_content_as_text.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/frame/frame_content_as_text.cc')
-rw-r--r--chromium/third_party/blink/renderer/core/frame/frame_content_as_text.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/third_party/blink/renderer/core/frame/frame_content_as_text.cc b/chromium/third_party/blink/renderer/core/frame/frame_content_as_text.cc
index 0dc762f65c3..ed3683afe07 100644
--- a/chromium/third_party/blink/renderer/core/frame/frame_content_as_text.cc
+++ b/chromium/third_party/blink/renderer/core/frame/frame_content_as_text.cc
@@ -4,7 +4,7 @@
#include "third_party/blink/renderer/core/frame/frame_content_as_text.h"
-#include "base/stl_util.h"
+#include "base/cxx17_backports.h"
#include "third_party/blink/public/web/web_document.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"
#include "third_party/blink/renderer/core/frame/local_frame_view.h"
@@ -15,7 +15,7 @@
namespace blink {
-void FrameContentAsText(size_t max_chars,
+void FrameContentAsText(wtf_size_t max_chars,
LocalFrame* frame,
StringBuilder& output) {
Document* document = frame->GetDocument();