blob: 40317c7f977a360488e375c90b02d66241e4f5c6 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/shell/browser/layout_test/layout_test_browser_context.h"
#include <utility>
#include "base/bind.h"
#include "base/command_line.h"
#include "base/files/file_util.h"
#include "base/logging.h"
#include "base/task_scheduler/post_task.h"
#include "build/build_config.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/push_messaging_service.h"
#include "content/public/browser/resource_context.h"
#include "content/shell/browser/layout_test/layout_test_download_manager_delegate.h"
#include "content/shell/browser/layout_test/layout_test_permission_manager.h"
#include "content/shell/browser/layout_test/layout_test_push_messaging_service.h"
#include "content/shell/browser/layout_test/layout_test_url_request_context_getter.h"
#include "content/shell/browser/shell_url_request_context_getter.h"
#include "content/test/mock_background_sync_controller.h"
#include "device/geolocation/geolocation_provider.h"
#include "device/geolocation/geoposition.h"
#if defined(OS_WIN)
#include "base/base_paths_win.h"
#elif defined(OS_LINUX)
#include "base/nix/xdg_util.h"
#elif defined(OS_MACOSX)
#include "base/base_paths_mac.h"
#include "base/mac/foundation_util.h"
#endif
namespace content {
LayoutTestBrowserContext::LayoutTestBrowserContext(bool off_the_record,
net::NetLog* net_log)
: ShellBrowserContext(off_the_record, net_log) {
Init();
}
LayoutTestBrowserContext::~LayoutTestBrowserContext() {
}
void LayoutTestBrowserContext::Init() {
// Fake geolocation coordinates for testing.
device::Geoposition position;
position.latitude = 0;
position.longitude = 0;
position.altitude = 0;
position.accuracy = 0;
position.timestamp = base::Time::Now();
device::GeolocationProvider::GetInstance()->OverrideLocationForTesting(
position);
}
ShellURLRequestContextGetter*
LayoutTestBrowserContext::CreateURLRequestContextGetter(
ProtocolHandlerMap* protocol_handlers,
URLRequestInterceptorScopedVector request_interceptors) {
return new LayoutTestURLRequestContextGetter(
ignore_certificate_errors(), IsOffTheRecord(), GetPath(),
BrowserThread::GetTaskRunnerForThread(BrowserThread::IO),
protocol_handlers, std::move(request_interceptors), net_log());
}
DownloadManagerDelegate*
LayoutTestBrowserContext::GetDownloadManagerDelegate() {
if (!download_manager_delegate_) {
download_manager_delegate_.reset(new LayoutTestDownloadManagerDelegate());
download_manager_delegate_->SetDownloadManager(
BrowserContext::GetDownloadManager(this));
download_manager_delegate_->SetDownloadBehaviorForTesting(
GetPath().Append(FILE_PATH_LITERAL("downloads")));
}
return download_manager_delegate_.get();
}
PushMessagingService* LayoutTestBrowserContext::GetPushMessagingService() {
if (!push_messaging_service_)
push_messaging_service_.reset(new LayoutTestPushMessagingService());
return push_messaging_service_.get();
}
PermissionManager* LayoutTestBrowserContext::GetPermissionManager() {
if (!permission_manager_.get())
permission_manager_.reset(new LayoutTestPermissionManager());
return permission_manager_.get();
}
BackgroundSyncController*
LayoutTestBrowserContext::GetBackgroundSyncController() {
if (!background_sync_controller_)
background_sync_controller_.reset(new MockBackgroundSyncController());
return background_sync_controller_.get();
}
LayoutTestPermissionManager*
LayoutTestBrowserContext::GetLayoutTestPermissionManager() {
return static_cast<LayoutTestPermissionManager*>(GetPermissionManager());
}
} // namespace content