refactor: prefer std::ranges over base::ranges (#43172)

Xref: 5668999

Xref: https://groups.google.com/a/chromium.org/g/cxx/c/ZnIbkfJ0Glw
This commit is contained in:
Charles Kerr 2024-08-02 21:21:59 -05:00 committed by GitHub
parent 305b28e9c7
commit 5a809a6694
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 28 additions and 24 deletions

View file

@ -5,6 +5,7 @@
#include "shell/browser/ui/inspectable_web_contents.h"
#include <algorithm>
#include <memory>
#include <string_view>
#include <utility>
@ -13,7 +14,6 @@
#include "base/base64.h"
#include "base/memory/raw_ptr.h"
#include "base/metrics/histogram.h"
#include "base/ranges/algorithm.h"
#include "base/strings/pattern.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
@ -111,10 +111,10 @@ gfx::Rect DictionaryToRect(const base::Value::Dict& dict) {
}
bool IsPointInScreen(const gfx::Point& point) {
return base::ranges::any_of(display::Screen::GetScreen()->GetAllDisplays(),
[&point](auto const& display) {
return display.bounds().Contains(point);
});
return std::ranges::any_of(display::Screen::GetScreen()->GetAllDisplays(),
[&point](auto const& display) {
return display.bounds().Contains(point);
});
}
void SetZoomLevelForWebContents(content::WebContents* web_contents,