blob: 551ec929b7c5d6815cdd19be730603df5506e9e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// 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.
#ifndef CHROME_BROWSER_PROFILES_PROFILE_SHORTCUT_MANAGER_H_
#define CHROME_BROWSER_PROFILES_PROFILE_SHORTCUT_MANAGER_H_
#include "base/file_path.h"
#include "chrome/browser/profiles/profile_info_cache.h"
#include "ui/gfx/image/image.h"
class ProfileManager;
class ProfileShortcutManager {
public:
virtual ~ProfileShortcutManager();
virtual void CreateProfileShortcut(const FilePath& profile_path) = 0;
static bool IsFeatureEnabled();
static ProfileShortcutManager* Create(ProfileManager* manager);
protected:
ProfileShortcutManager();
private:
DISALLOW_COPY_AND_ASSIGN(ProfileShortcutManager);
};
#endif // CHROME_BROWSER_PROFILES_PROFILE_SHORTCUT_MANAGER_H_
|