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

Side by Side Diff: chrome/browser/profile_manager.h

Issue 2878081: Clean up inclusion of <map>, <set>, <vector> in chrome/browser/*.h. (Closed)
Patch Set: Created 10 years, 4 months 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/profile_impl.h ('k') | chrome/browser/wrench_menu_model.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 (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
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__
OLDNEW
« no previous file with comments | « chrome/browser/profile_impl.h ('k') | chrome/browser/wrench_menu_model.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698