| // Copyright 2025 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef CHROME_BROWSER_ACTOR_TOOLS_WAIT_TOOL_H_ |
| #define CHROME_BROWSER_ACTOR_TOOLS_WAIT_TOOL_H_ |
| |
| #include "base/memory/weak_ptr.h" |
| #include "chrome/browser/actor/tools/observation_delay_controller.h" |
| #include "chrome/browser/actor/tools/tool.h" |
| #include "chrome/browser/actor/tools/tool_request.h" |
| #include "chrome/browser/actor/tools/wait_tool_request.h" |
| |
| namespace actor { |
| |
| // Waits for a page to settle before continuing with other tools. |
| class WaitTool : public Tool { |
| public: |
| explicit WaitTool(TaskId task_id, |
| ToolDelegate& tool_delegate, |
| base::TimeDelta wait_duration); |
| ~WaitTool() override; |
| |
| // actor::Tool |
| void Validate(ValidateCallback callback) override; |
| void Invoke(InvokeCallback callback) override; |
| std::string DebugString() const override; |
| std::string JournalEvent() const override; |
| std::unique_ptr<ObservationDelayController> GetObservationDelayer( |
| std::optional<ObservationDelayController::PageStabilityConfig> |
| page_stability_config) override; |
| tabs::TabHandle GetTargetTab() const override; |
| |
| static void SetNoDelayForTesting(); |
| |
| private: |
| void OnDelayFinished(InvokeCallback callback); |
| |
| // TODO(bokan): This could be removed in place of tests setting the wait |
| // duration explicitly. |
| static bool no_delay_for_testing_; |
| |
| base::TimeDelta wait_duration_; |
| |
| base::WeakPtrFactory<WaitTool> weak_ptr_factory_{this}; |
| }; |
| |
| } // namespace actor |
| |
| #endif // CHROME_BROWSER_ACTOR_TOOLS_WAIT_TOOL_H_ |