1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
// 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_PRELOADING_PRERENDER_PRERENDER_COMMIT_DEFERRING_CONDITION_H_
#define CONTENT_BROWSER_PRELOADING_PRERENDER_PRERENDER_COMMIT_DEFERRING_CONDITION_H_
#include <memory>
#include "base/time/time.h"
#include "content/public/browser/commit_deferring_condition.h"
#include "content/public/browser/web_contents_observer.h"
namespace content {
class NavigationRequest;
// PrerenderCommitDeferringCondition defers a prerender activation with ongoing
// main frame navigation in prerender frame tree. When this happens we wait for
// the ongoing main frame navigation to commit before resuming the prerender
// activation.
//
// This implementation assumes that there are no new navigations happening in
// the main frame during prerender activation i.e., between the ongoing
// navigation commit until the prerender activates.
class PrerenderCommitDeferringCondition : public CommitDeferringCondition,
public WebContentsObserver {
public:
~PrerenderCommitDeferringCondition() override;
static std::unique_ptr<CommitDeferringCondition> MaybeCreate(
NavigationRequest& navigation_request,
NavigationType navigation_type,
std::optional<FrameTreeNodeId> candidate_prerender_frame_tree_node_id);
Result WillCommitNavigation(base::OnceClosure resume) override;
const char* TraceEventName() const override;
private:
PrerenderCommitDeferringCondition(
NavigationRequest& navigation_request,
FrameTreeNodeId candidate_prerender_frame_tree_node_id);
// WebContentsObserver
// Tracks the ongoing navigation commit in prerender frame tree to resume the
// activation.
void DidFinishNavigation(NavigationHandle* handle) override;
// The root frame tree node id of the prerendered page that this navigation
// will attempt to activate. See comments on
// `CommitDeferringConditionRunner::candidate_prerender_frame_tree_node_id_`
// for details.
const FrameTreeNodeId candidate_prerender_frame_tree_node_id_;
// The time PrerenderCommitDeferringCondition started deferring the
// navigation.
base::TimeTicks defer_start_time_;
base::OnceClosure done_closure_;
};
} // namespace content
#endif // CONTENT_BROWSER_PRELOADING_PRERENDER_PRERENDER_COMMIT_DEFERRING_CONDITION_H_
|