mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2024-12-12 09:37:37 +01:00
84f3ff2afd
As part of introducing the Chrome runtime we now need to distinguish between the classes that implement the current CEF runtime and the classes the implement the shared CEF library/runtime structure and public API. We choose the name Alloy for the current CEF runtime because it describes a combination of Chrome and other elements. Shared CEF library/runtime classes will continue to use the Cef prefix. Classes that implement the Alloy or Chrome runtime will use the Alloy or Chrome prefixes respectively. Classes that extend an existing Chrome-prefixed class will add the Cef or Alloy suffix, thereby following the existing naming pattern of Chrome-derived classes. This change applies the new naming pattern to an initial set of runtime-related classes. Additional classes/files will be renamed and moved as the Chrome runtime implementation progresses.
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_ALLOY_CHROME_PROFILE_MANAGER_ALLOY_H_
|
|
#define CEF_LIBCEF_BROWSER_ALLOY_CHROME_PROFILE_MANAGER_ALLOY_H_
|
|
|
|
#include "chrome/browser/profiles/profile_manager.h"
|
|
|
|
class ChromeProfileManagerAlloy : public ProfileManager {
|
|
public:
|
|
ChromeProfileManagerAlloy();
|
|
~ChromeProfileManagerAlloy() 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(ChromeProfileManagerAlloy);
|
|
};
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_ALLOY_CHROME_PROFILE_MANAGER_ALLOY_H_
|