OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_PROFILES_PROFILE_MANAGER_H_ | 7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_MANAGER_H_ |
8 #define CHROME_BROWSER_PROFILES_PROFILE_MANAGER_H_ | 8 #define CHROME_BROWSER_PROFILES_PROFILE_MANAGER_H_ |
9 #pragma once | |
10 | 9 |
11 #include <list> | 10 #include <list> |
12 #include <vector> | 11 #include <vector> |
13 | 12 |
14 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
15 #include "base/file_path.h" | 14 #include "base/file_path.h" |
16 #include "base/gtest_prod_util.h" | 15 #include "base/gtest_prod_util.h" |
17 #include "base/hash_tables.h" | 16 #include "base/hash_tables.h" |
18 #include "base/memory/linked_ptr.h" | 17 #include "base/memory/linked_ptr.h" |
19 #include "base/memory/scoped_ptr.h" | 18 #include "base/memory/scoped_ptr.h" |
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 class ProfileManagerWithoutInit : public ProfileManager { | 348 class ProfileManagerWithoutInit : public ProfileManager { |
350 public: | 349 public: |
351 explicit ProfileManagerWithoutInit(const FilePath& user_data_dir); | 350 explicit ProfileManagerWithoutInit(const FilePath& user_data_dir); |
352 | 351 |
353 protected: | 352 protected: |
354 virtual void DoFinalInitForServices(Profile*, bool) OVERRIDE {} | 353 virtual void DoFinalInitForServices(Profile*, bool) OVERRIDE {} |
355 virtual void DoFinalInitLogging(Profile*) OVERRIDE {} | 354 virtual void DoFinalInitLogging(Profile*) OVERRIDE {} |
356 }; | 355 }; |
357 | 356 |
358 #endif // CHROME_BROWSER_PROFILES_PROFILE_MANAGER_H_ | 357 #endif // CHROME_BROWSER_PROFILES_PROFILE_MANAGER_H_ |
OLD | NEW |