chromium/chrome/browser/ui/webui/top_chrome/preload_context.cc

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/ui/webui/top_chrome/preload_context.h"

#include "third_party/abseil-cpp/absl/types/variant.h"

class Browser;
class Profile;

namespace webui {

PreloadContext::PreloadContext() = default;
PreloadContext::~PreloadContext() = default;

// static
PreloadContext PreloadContext::From(Browser* browser) {}

// static
PreloadContext PreloadContext::From(Profile* profile) {}

const Browser* PreloadContext::GetBrowser() const {}

const Profile* PreloadContext::GetProfile() const {}

bool PreloadContext::IsBrowser() const {}

bool PreloadContext::IsProfile() const {}

}  // namespace webui