2016-07-18 23:22:22 +02:00
|
|
|
// Copyright (c) 2016 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 file provides a stub implementation of Chrome's ProfileManager object
|
|
|
|
// for use as an interop layer between CEF and files that live in chrome/.
|
|
|
|
|
2020-06-28 20:29:44 +02:00
|
|
|
#ifndef CEF_LIBCEF_BROWSER_ALLOY_CHROME_PROFILE_MANAGER_ALLOY_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_ALLOY_CHROME_PROFILE_MANAGER_ALLOY_H_
|
2016-07-18 23:22:22 +02:00
|
|
|
|
|
|
|
#include "chrome/browser/profiles/profile_manager.h"
|
|
|
|
|
2020-06-28 20:29:44 +02:00
|
|
|
class ChromeProfileManagerAlloy : public ProfileManager {
|
2016-07-18 23:22:22 +02:00
|
|
|
public:
|
2020-06-28 20:29:44 +02:00
|
|
|
ChromeProfileManagerAlloy();
|
2021-12-06 21:40:25 +01:00
|
|
|
|
|
|
|
ChromeProfileManagerAlloy(const ChromeProfileManagerAlloy&) = delete;
|
|
|
|
ChromeProfileManagerAlloy& operator=(const ChromeProfileManagerAlloy&) =
|
|
|
|
delete;
|
|
|
|
|
2020-06-28 20:29:44 +02:00
|
|
|
~ChromeProfileManagerAlloy() override;
|
2016-07-18 23:22:22 +02:00
|
|
|
|
2016-08-04 14:37:53 +02:00
|
|
|
Profile* GetProfile(const base::FilePath& profile_dir) override;
|
2016-07-18 23:22:22 +02:00
|
|
|
bool IsValidProfile(const void* profile) override;
|
|
|
|
};
|
|
|
|
|
2020-06-28 20:29:44 +02:00
|
|
|
#endif // CEF_LIBCEF_BROWSER_ALLOY_CHROME_PROFILE_MANAGER_ALLOY_H_
|