mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 09:21:57 -05:00
LibWebView+WebContent: Prefix AK::Duration with AK Namespace
(cherry picked from commit 28093fecaeaee4ed2ae8ea973e6cade5ce762402)
This commit is contained in:
parent
d8080cf1a6
commit
1b3e190028
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@
|
|||
|
||||
namespace WebView {
|
||||
|
||||
static constexpr auto DATABASE_SYNCHRONIZATION_TIMER = Duration::from_seconds(30);
|
||||
static constexpr auto DATABASE_SYNCHRONIZATION_TIMER = AK::Duration::from_seconds(30);
|
||||
|
||||
ErrorOr<NonnullOwnPtr<CookieJar>> CookieJar::create(Database& database)
|
||||
{
|
||||
|
|
|
@ -2478,7 +2478,7 @@ Gfx::IntRect WebDriverConnection::iconify_the_window()
|
|||
ErrorOr<JsonArray, Web::WebDriver::Error> WebDriverConnection::find(StartNodeGetter&& start_node_getter, Web::WebDriver::LocationStrategy using_, StringView value)
|
||||
{
|
||||
// 1. Let end time be the current time plus the session implicit wait timeout.
|
||||
auto end_time = MonotonicTime::now() + Duration::from_milliseconds(static_cast<i64>(m_timeouts_configuration.implicit_wait_timeout));
|
||||
auto end_time = MonotonicTime::now() + AK::Duration::from_milliseconds(static_cast<i64>(m_timeouts_configuration.implicit_wait_timeout));
|
||||
|
||||
// 2. Let location strategy be equal to using.
|
||||
auto location_strategy = using_;
|
||||
|
|
Loading…
Reference in a new issue