131 lines
2.8 KiB
C++
131 lines
2.8 KiB
C++
// Copyright (c) 2015 The Chromium Embedded Framework Authors.
|
|
// Portions copyright (c) 2012 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 "libcef/browser/chrome_profile_stub.h"
|
|
|
|
ChromeProfileStub::ChromeProfileStub() {}
|
|
|
|
ChromeProfileStub::~ChromeProfileStub() {}
|
|
|
|
scoped_refptr<base::SequencedTaskRunner> ChromeProfileStub::GetIOTaskRunner() {
|
|
NOTREACHED();
|
|
return scoped_refptr<base::SequencedTaskRunner>();
|
|
}
|
|
|
|
std::string ChromeProfileStub::GetProfileUserName() const {
|
|
NOTREACHED();
|
|
return std::string();
|
|
}
|
|
|
|
Profile::ProfileType ChromeProfileStub::GetProfileType() const {
|
|
return REGULAR_PROFILE;
|
|
}
|
|
|
|
Profile* ChromeProfileStub::GetOffTheRecordProfile() {
|
|
NOTREACHED();
|
|
return NULL;
|
|
}
|
|
|
|
void ChromeProfileStub::DestroyOffTheRecordProfile() {
|
|
NOTREACHED();
|
|
}
|
|
|
|
bool ChromeProfileStub::HasOffTheRecordProfile() {
|
|
return false;
|
|
}
|
|
|
|
Profile* ChromeProfileStub::GetOriginalProfile() {
|
|
return this;
|
|
}
|
|
|
|
const Profile* ChromeProfileStub::GetOriginalProfile() const {
|
|
return this;
|
|
}
|
|
|
|
bool ChromeProfileStub::IsSupervised() const {
|
|
return false;
|
|
}
|
|
|
|
bool ChromeProfileStub::IsChild() const {
|
|
return false;
|
|
}
|
|
|
|
bool ChromeProfileStub::IsLegacySupervised() const {
|
|
NOTREACHED();
|
|
return false;
|
|
}
|
|
|
|
ExtensionSpecialStoragePolicy*
|
|
ChromeProfileStub::GetExtensionSpecialStoragePolicy() {
|
|
NOTREACHED();
|
|
return NULL;
|
|
}
|
|
|
|
PrefService* ChromeProfileStub::GetOffTheRecordPrefs() {
|
|
NOTREACHED();
|
|
return NULL;
|
|
}
|
|
|
|
net::URLRequestContextGetter*
|
|
ChromeProfileStub::GetRequestContextForExtensions() {
|
|
// TODO(cef): Consider creating a separate context for extensions to match
|
|
// Chrome behavior.
|
|
return GetRequestContext();
|
|
}
|
|
|
|
net::SSLConfigService* ChromeProfileStub::GetSSLConfigService() {
|
|
NOTREACHED();
|
|
return NULL;
|
|
}
|
|
|
|
bool ChromeProfileStub::IsSameProfile(Profile* profile) {
|
|
NOTREACHED();
|
|
return false;
|
|
}
|
|
|
|
base::Time ChromeProfileStub::GetStartTime() const {
|
|
NOTREACHED();
|
|
return base::Time();
|
|
}
|
|
|
|
base::FilePath ChromeProfileStub::last_selected_directory() {
|
|
NOTREACHED();
|
|
return base::FilePath();
|
|
}
|
|
|
|
void ChromeProfileStub::set_last_selected_directory(
|
|
const base::FilePath& path) {
|
|
NOTREACHED();
|
|
}
|
|
|
|
PrefProxyConfigTracker* ChromeProfileStub::GetProxyConfigTracker() {
|
|
NOTREACHED();
|
|
return NULL;
|
|
}
|
|
|
|
chrome_browser_net::Predictor* ChromeProfileStub::GetNetworkPredictor() {
|
|
NOTREACHED();
|
|
return NULL;
|
|
}
|
|
|
|
GURL ChromeProfileStub::GetHomePage() {
|
|
NOTREACHED();
|
|
return GURL();
|
|
}
|
|
|
|
bool ChromeProfileStub::WasCreatedByVersionOrLater(const std::string& version) {
|
|
NOTREACHED();
|
|
return false;
|
|
}
|
|
|
|
void ChromeProfileStub::SetExitType(ExitType exit_type) {
|
|
NOTREACHED();
|
|
}
|
|
|
|
Profile::ExitType ChromeProfileStub::GetLastSessionExitType() {
|
|
NOTREACHED();
|
|
return EXIT_NORMAL;
|
|
}
|