OLD | NEW |
---|---|
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // This class keeps track of the currently-active profiles in the runtime. | 5 // This class keeps track of the currently-active profiles in the runtime. |
6 | 6 |
7 #ifndef CHROME_BROWSER_PROFILE_MANAGER_H__ | 7 #ifndef CHROME_BROWSER_PROFILE_MANAGER_H__ |
8 #define CHROME_BROWSER_PROFILE_MANAGER_H__ | 8 #define CHROME_BROWSER_PROFILE_MANAGER_H__ |
9 #pragma once | 9 #pragma once |
10 | 10 |
11 #include <map> | |
12 #include <string> | 11 #include <string> |
Lei Zhang
2010/08/05 19:39:08
Are you going to do another round and remove strin
viettrungluu
2010/08/05 21:45:15
Yeah, I guess I will.
| |
13 #include <vector> | 12 #include <vector> |
14 | 13 |
15 #include "app/system_monitor.h" | 14 #include "app/system_monitor.h" |
16 #include "base/basictypes.h" | 15 #include "base/basictypes.h" |
17 #include "base/file_path.h" | 16 #include "base/file_path.h" |
18 #include "base/message_loop.h" | 17 #include "base/message_loop.h" |
19 #include "base/non_thread_safe.h" | 18 #include "base/non_thread_safe.h" |
20 #include "base/values.h" | 19 #include "base/values.h" |
21 #include "chrome/browser/profile.h" | 20 #include "chrome/browser/profile.h" |
22 #include "chrome/common/notification_observer.h" | 21 #include "chrome/common/notification_observer.h" |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
121 | 120 |
122 // Indicates that a user has logged in and that the profile specified | 121 // Indicates that a user has logged in and that the profile specified |
123 // in the --login-profile command line argument should be used as the | 122 // in the --login-profile command line argument should be used as the |
124 // default. | 123 // default. |
125 bool logged_in_; | 124 bool logged_in_; |
126 | 125 |
127 DISALLOW_COPY_AND_ASSIGN(ProfileManager); | 126 DISALLOW_COPY_AND_ASSIGN(ProfileManager); |
128 }; | 127 }; |
129 | 128 |
130 #endif // CHROME_BROWSER_PROFILE_MANAGER_H__ | 129 #endif // CHROME_BROWSER_PROFILE_MANAGER_H__ |
OLD | NEW |