chromium/ui/webui/examples/browser/browser_context.cc

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

#include "ui/webui/examples/browser/browser_context.h"

#include "content/public/browser/browser_thread.h"

namespace webui_examples {

BrowserContext::BrowserContext(const base::FilePath& temp_dir_path)
    :{}

BrowserContext::~BrowserContext() {}

// Creates a delegate to initialize a HostZoomMap and persist its information.
// This is called during creation of each StoragePartition.
std::unique_ptr<content::ZoomLevelDelegate>
BrowserContext::CreateZoomLevelDelegate(const base::FilePath& partition_path) {}

base::FilePath BrowserContext::GetPath() {}

bool BrowserContext::IsOffTheRecord() {}

content::DownloadManagerDelegate* BrowserContext::GetDownloadManagerDelegate() {}

content::BrowserPluginGuestManager* BrowserContext::GetGuestManager() {}

storage::SpecialStoragePolicy* BrowserContext::GetSpecialStoragePolicy() {}

content::PlatformNotificationService*
BrowserContext::GetPlatformNotificationService() {}

content::PushMessagingService* BrowserContext::GetPushMessagingService() {}

content::StorageNotificationService*
BrowserContext::GetStorageNotificationService() {}

content::SSLHostStateDelegate* BrowserContext::GetSSLHostStateDelegate() {}

content::PermissionControllerDelegate*
BrowserContext::GetPermissionControllerDelegate() {}

content::ReduceAcceptLanguageControllerDelegate*
BrowserContext::GetReduceAcceptLanguageControllerDelegate() {}

content::ClientHintsControllerDelegate*
BrowserContext::GetClientHintsControllerDelegate() {}

content::BackgroundFetchDelegate* BrowserContext::GetBackgroundFetchDelegate() {}

content::BackgroundSyncController*
BrowserContext::GetBackgroundSyncController() {}

content::BrowsingDataRemoverDelegate*
BrowserContext::GetBrowsingDataRemoverDelegate() {}

}  // namespace webui_examples