Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Side by Side Diff: chrome/browser/profiles/profile_list_desktop.h

Issue 2530053003: chrome: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase + address comment Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/profiles/profile_io_data.h ('k') | chrome/browser/profiles/profile_manager.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_LIST_DESKTOP_H_ 5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_LIST_DESKTOP_H_
6 #define CHROME_BROWSER_PROFILES_PROFILE_LIST_DESKTOP_H_ 6 #define CHROME_BROWSER_PROFILES_PROFILE_LIST_DESKTOP_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <memory> 10 #include <memory>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/macros.h" 13 #include "base/macros.h"
14 #include "chrome/browser/profiles/profile_list.h" 14 #include "chrome/browser/profiles/profile_list.h"
15 15
16 class Browser;
17 class ProfileAttributesStorage; 16 class ProfileAttributesStorage;
18 17
19 // This model represents the profiles added to desktop Chrome (as opposed to 18 // This model represents the profiles added to desktop Chrome (as opposed to
20 // Chrome OS). Profiles marked not to appear in the list will be omitted 19 // Chrome OS). Profiles marked not to appear in the list will be omitted
21 // throughout. 20 // throughout.
22 class ProfileListDesktop : public ProfileList { 21 class ProfileListDesktop : public ProfileList {
23 public: 22 public:
24 explicit ProfileListDesktop(ProfileAttributesStorage* profile_storage); 23 explicit ProfileListDesktop(ProfileAttributesStorage* profile_storage);
25 ~ProfileListDesktop() override; 24 ~ProfileListDesktop() override;
26 25
(...skipping 15 matching lines...) Expand all
42 // The path of the currently active profile. 41 // The path of the currently active profile.
43 base::FilePath active_profile_path_; 42 base::FilePath active_profile_path_;
44 43
45 // List of built "menu items." 44 // List of built "menu items."
46 std::vector<std::unique_ptr<AvatarMenu::Item>> items_; 45 std::vector<std::unique_ptr<AvatarMenu::Item>> items_;
47 46
48 DISALLOW_COPY_AND_ASSIGN(ProfileListDesktop); 47 DISALLOW_COPY_AND_ASSIGN(ProfileListDesktop);
49 }; 48 };
50 49
51 #endif // CHROME_BROWSER_PROFILES_PROFILE_LIST_DESKTOP_H_ 50 #endif // CHROME_BROWSER_PROFILES_PROFILE_LIST_DESKTOP_H_
OLDNEW
« no previous file with comments | « chrome/browser/profiles/profile_io_data.h ('k') | chrome/browser/profiles/profile_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698