28 lines
1.0 KiB
C++
28 lines
1.0 KiB
C++
// 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/.
|
|
|
|
#ifndef CEF_LIBCEF_BROWSER_CHROME_PROFILE_MANAGER_STUB_H_
|
|
#define CEF_LIBCEF_BROWSER_CHROME_PROFILE_MANAGER_STUB_H_
|
|
|
|
#include "chrome/browser/profiles/profile_manager.h"
|
|
|
|
class ChromeProfileManagerStub : public ProfileManager {
|
|
public:
|
|
ChromeProfileManagerStub();
|
|
~ChromeProfileManagerStub() override;
|
|
|
|
Profile* GetProfile(const base::FilePath& profile_dir) override;
|
|
bool IsValidProfile(const void* profile) override;
|
|
Profile* GetLastUsedProfile(const base::FilePath& user_data_dir) override;
|
|
|
|
private:
|
|
DISALLOW_COPY_AND_ASSIGN(ChromeProfileManagerStub);
|
|
};
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_CHROME_PROFILE_MANAGER_STUB_H_
|