mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	Also perform related C++ cleanup:
- Use =default instead of {} for default implementations of
  constructors/destructors.
- Replace typedef with using.
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			1.1 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(const ChromeProfileManagerAlloy&) = delete;
 | 
						|
  ChromeProfileManagerAlloy& operator=(const ChromeProfileManagerAlloy&) =
 | 
						|
      delete;
 | 
						|
 | 
						|
  ~ChromeProfileManagerAlloy() override;
 | 
						|
 | 
						|
  Profile* GetProfile(const base::FilePath& profile_dir) override;
 | 
						|
  bool IsValidProfile(const void* profile) override;
 | 
						|
};
 | 
						|
 | 
						|
#endif  // CEF_LIBCEF_BROWSER_ALLOY_CHROME_PROFILE_MANAGER_ALLOY_H_
 |