mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2024-12-15 10:58:33 +01:00
047e8f9349
- Building on macOS now requires the 10.15 SDK. Xcode 11.3 is recommended as Xcode 11.4 is not currently supported (see https://crbug.com/1065146). - Jumbo build configuration is no longer supported. Chromium is skipping the M82 release and consequently no CEF 4085 branch will be created. For details on the Chromium decision see https://groups.google.com/a/chromium.org/d/msg/chromium-dev/Vn7uzglqLz0/JItlSrZxBAAJ
58 lines
2.2 KiB
C++
58 lines
2.2 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.
|
|
|
|
// This class gathers state related to a single user profile.
|
|
|
|
#ifndef CEF_LIBCEF_BROWSER_CHROME_PROFILE_STUB_H_
|
|
#define CEF_LIBCEF_BROWSER_CHROME_PROFILE_STUB_H_
|
|
|
|
#include "chrome/browser/profiles/profile.h"
|
|
|
|
// This file provides a stub implementation of Chrome's Profile object for use
|
|
// as an interop layer between CEF and files that live in chrome/.
|
|
|
|
class ChromeProfileStub : public Profile {
|
|
public:
|
|
ChromeProfileStub();
|
|
~ChromeProfileStub() override;
|
|
|
|
protected:
|
|
// Profile methods.
|
|
bool IsOffTheRecord() override;
|
|
bool IsOffTheRecord() const override;
|
|
variations::VariationsClient* GetVariationsClient() override;
|
|
scoped_refptr<base::SequencedTaskRunner> GetIOTaskRunner() override;
|
|
std::string GetProfileUserName() const override;
|
|
ProfileType GetProfileType() const override;
|
|
Profile* GetOffTheRecordProfile() override;
|
|
void DestroyOffTheRecordProfile() override;
|
|
bool HasOffTheRecordProfile() override;
|
|
Profile* GetOriginalProfile() override;
|
|
const Profile* GetOriginalProfile() const override;
|
|
bool IsSupervised() const override;
|
|
bool IsChild() const override;
|
|
bool IsLegacySupervised() const override;
|
|
ExtensionSpecialStoragePolicy* GetExtensionSpecialStoragePolicy() override;
|
|
PrefService* GetOffTheRecordPrefs() override;
|
|
bool IsSameProfile(Profile* profile) override;
|
|
base::Time GetStartTime() const override;
|
|
base::FilePath last_selected_directory() override;
|
|
void set_last_selected_directory(const base::FilePath& path) override;
|
|
GURL GetHomePage() override;
|
|
bool WasCreatedByVersionOrLater(const std::string& version) override;
|
|
bool IsIndependentOffTheRecordProfile() override;
|
|
void SetExitType(ExitType exit_type) override;
|
|
ExitType GetLastSessionExitType() override;
|
|
base::Time GetCreationTime() const override;
|
|
void SetCreationTimeForTesting(base::Time creation_time) override;
|
|
|
|
private:
|
|
std::unique_ptr<variations::VariationsClient> variations_client_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(ChromeProfileStub);
|
|
};
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_CHROME_PROFILE_STUB_H_
|