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 #include "chrome/browser/profiles/profile_manager.h" | 5 #include "chrome/browser/profiles/profile_manager.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
(...skipping 27 matching lines...) Expand all Loading... |
38 #include "chrome/browser/ui/browser.h" | 38 #include "chrome/browser/ui/browser.h" |
39 #include "chrome/browser/ui/browser_iterator.h" | 39 #include "chrome/browser/ui/browser_iterator.h" |
40 #include "chrome/browser/ui/sync/sync_promo_ui.h" | 40 #include "chrome/browser/ui/sync/sync_promo_ui.h" |
41 #include "chrome/common/chrome_constants.h" | 41 #include "chrome/common/chrome_constants.h" |
42 #include "chrome/common/chrome_paths_internal.h" | 42 #include "chrome/common/chrome_paths_internal.h" |
43 #include "chrome/common/chrome_switches.h" | 43 #include "chrome/common/chrome_switches.h" |
44 #include "chrome/common/logging_chrome.h" | 44 #include "chrome/common/logging_chrome.h" |
45 #include "chrome/common/pref_names.h" | 45 #include "chrome/common/pref_names.h" |
46 #include "chrome/common/profile_management_switches.h" | 46 #include "chrome/common/profile_management_switches.h" |
47 #include "chrome/common/url_constants.h" | 47 #include "chrome/common/url_constants.h" |
| 48 #include "components/bookmarks/bookmark_pref_names.h" |
48 #include "content/public/browser/browser_thread.h" | 49 #include "content/public/browser/browser_thread.h" |
49 #include "content/public/browser/notification_service.h" | 50 #include "content/public/browser/notification_service.h" |
50 #include "content/public/browser/user_metrics.h" | 51 #include "content/public/browser/user_metrics.h" |
51 #include "extensions/browser/extension_registry.h" | 52 #include "extensions/browser/extension_registry.h" |
52 #include "extensions/common/extension_set.h" | 53 #include "extensions/common/extension_set.h" |
53 #include "extensions/common/manifest.h" | 54 #include "extensions/common/manifest.h" |
54 #include "grit/generated_resources.h" | 55 #include "grit/generated_resources.h" |
55 #include "net/http/http_transaction_factory.h" | 56 #include "net/http/http_transaction_factory.h" |
56 #include "net/url_request/url_request_context.h" | 57 #include "net/url_request/url_request_context.h" |
57 #include "net/url_request/url_request_context_getter.h" | 58 #include "net/url_request/url_request_context_getter.h" |
(...skipping 1210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1268 last_non_managed_profile_path.BaseName().MaybeAsASCII()); | 1269 last_non_managed_profile_path.BaseName().MaybeAsASCII()); |
1269 FinishDeletingProfile(profile_to_delete_path); | 1270 FinishDeletingProfile(profile_to_delete_path); |
1270 } | 1271 } |
1271 } | 1272 } |
1272 } | 1273 } |
1273 #endif | 1274 #endif |
1274 | 1275 |
1275 ProfileManagerWithoutInit::ProfileManagerWithoutInit( | 1276 ProfileManagerWithoutInit::ProfileManagerWithoutInit( |
1276 const base::FilePath& user_data_dir) : ProfileManager(user_data_dir) { | 1277 const base::FilePath& user_data_dir) : ProfileManager(user_data_dir) { |
1277 } | 1278 } |
OLD | NEW |