// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_BROWSER_WEB_CONTENTS_JAVA_SCRIPT_DIALOG_COMMIT_DEFERRING_CONDITION_H_ #define CONTENT_BROWSER_WEB_CONTENTS_JAVA_SCRIPT_DIALOG_COMMIT_DEFERRING_CONDITION_H_ #include <memory> #include "content/public/browser/commit_deferring_condition.h" namespace content { class NavigationRequest; // Defers a navigation from committing while a JavaScript dialog is showing. class JavaScriptDialogCommitDeferringCondition : public CommitDeferringCondition { … }; } // namespace content #endif // CONTENT_BROWSER_WEB_CONTENTS_JAVA_SCRIPT_DIALOG_COMMIT_DEFERRING_CONDITION_H_