chromium/content/public/browser/weak_document_ptr.h

// 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_PUBLIC_BROWSER_WEAK_DOCUMENT_PTR_H_
#define CONTENT_PUBLIC_BROWSER_WEAK_DOCUMENT_PTR_H_

#include "base/memory/weak_ptr.h"
#include "content/common/content_export.h"

namespace content {

class RenderFrameHost;

// Weakly refers to a document.
//
// This is invalidated at the same time as DocumentUserData. It
// becomes null whenever the RenderFrameHost is deleted or navigates to a
// different document. See also document_user_data.h.
//
// Note that though this is implemented as a base::WeakPtr<RenderFrameHost>,
// it is different from an ordinary weak pointer to the RenderFrameHost.
//
// docs/render_document.md will make these equivalent in the future.
//
// Treat this like you would a base::WeakPtr, because that's essentially what it
// is.
class WeakDocumentPtr {};

// [chromium-style] requires these be out of line, but they are small enough to
// inline the defaults.
inline WeakDocumentPtr::WeakDocumentPtr() = default;
inline WeakDocumentPtr::WeakDocumentPtr(WeakDocumentPtr&&) = default;
inline WeakDocumentPtr& WeakDocumentPtr::operator=(WeakDocumentPtr&&) = default;
inline WeakDocumentPtr::WeakDocumentPtr(const WeakDocumentPtr&) = default;
inline WeakDocumentPtr& WeakDocumentPtr::operator=(const WeakDocumentPtr&) =
    default;
inline WeakDocumentPtr::~WeakDocumentPtr() = default;

}  // namespace content

#endif  // CONTENT_PUBLIC_BROWSER_WEAK_DOCUMENT_PTR_H_