OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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/profile.h" | 5 #include "chrome/browser/profile.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
9 #include "base/lock.h" | 9 #include "base/lock.h" |
10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
11 #include "base/scoped_ptr.h" | 11 #include "base/scoped_ptr.h" |
12 #include "base/string_util.h" | 12 #include "base/string_util.h" |
13 #include "base/values.h" | 13 #include "base/values.h" |
14 #include "chrome/browser/bookmarks/bookmark_model.h" | 14 #include "chrome/browser/bookmarks/bookmark_model.h" |
15 #include "chrome/browser/browser_list.h" | 15 #include "chrome/browser/browser_list.h" |
16 #include "chrome/browser/browser_process.h" | 16 #include "chrome/browser/browser_process.h" |
17 #include "chrome/browser/download_manager.h" | 17 #include "chrome/browser/download/download_manager.h" |
18 #include "chrome/browser/history/history.h" | 18 #include "chrome/browser/history/history.h" |
19 #include "chrome/browser/navigation_controller.h" | 19 #include "chrome/browser/navigation_controller.h" |
20 #include "chrome/browser/profile_manager.h" | 20 #include "chrome/browser/profile_manager.h" |
21 #include "chrome/browser/render_process_host.h" | 21 #include "chrome/browser/render_process_host.h" |
22 #include "chrome/browser/spellchecker.h" | 22 #include "chrome/browser/spellchecker.h" |
23 #include "chrome/browser/tab_restore_service.h" | 23 #include "chrome/browser/tab_restore_service.h" |
24 #include "chrome/browser/template_url_fetcher.h" | 24 #include "chrome/browser/template_url_fetcher.h" |
25 #include "chrome/browser/template_url_model.h" | 25 #include "chrome/browser/template_url_model.h" |
26 #include "chrome/browser/visitedlink_master.h" | 26 #include "chrome/browser/visitedlink_master.h" |
27 #include "chrome/browser/webdata/web_data_service.h" | 27 #include "chrome/browser/webdata/web_data_service.h" |
(...skipping 869 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
897 create_session_service_timer_.Stop(); | 897 create_session_service_timer_.Stop(); |
898 } | 898 } |
899 | 899 |
900 #ifdef CHROME_PERSONALIZATION | 900 #ifdef CHROME_PERSONALIZATION |
901 ProfilePersonalization ProfileImpl::GetProfilePersonalization() { | 901 ProfilePersonalization ProfileImpl::GetProfilePersonalization() { |
902 if (!personalization_) | 902 if (!personalization_) |
903 personalization_ = Personalization::CreateProfilePersonalization(this); | 903 personalization_ = Personalization::CreateProfilePersonalization(this); |
904 return personalization_; | 904 return personalization_; |
905 } | 905 } |
906 #endif | 906 #endif |
OLD | NEW |