| 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 // This class gathers state related to a single user profile. | 5 // This class gathers state related to a single user profile. |
| 6 | 6 |
| 7 #ifndef CHROME_BROWSER_PROFILE_H_ | 7 #ifndef CHROME_BROWSER_PROFILE_H_ |
| 8 #define CHROME_BROWSER_PROFILE_H_ | 8 #define CHROME_BROWSER_PROFILE_H_ |
| 9 | 9 |
| 10 #include <set> | 10 #include <set> |
| 11 #include <string> | 11 #include <string> |
| 12 | 12 |
| 13 #include "app/theme_provider.h" | 13 #include "app/theme_provider.h" |
| 14 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
| 15 #include "base/file_path.h" | 15 #include "base/file_path.h" |
| 16 #include "base/scoped_ptr.h" | 16 #include "base/scoped_ptr.h" |
| 17 #include "base/timer.h" | 17 #include "base/timer.h" |
| 18 #ifdef CHROME_PERSONALIZATION |
| 19 #include "chrome/browser/sync/personalization.h" |
| 20 #endif |
| 18 #include "chrome/browser/web_resource/web_resource_service.h" | 21 #include "chrome/browser/web_resource/web_resource_service.h" |
| 19 #ifdef CHROME_PERSONALIZATION | |
| 20 #include "chrome/personalization/personalization.h" | |
| 21 #endif | |
| 22 #include "chrome/common/notification_registrar.h" | 22 #include "chrome/common/notification_registrar.h" |
| 23 | 23 |
| 24 namespace net { | 24 namespace net { |
| 25 class ForceTLSState; | 25 class ForceTLSState; |
| 26 } | 26 } |
| 27 class Blacklist; | 27 class Blacklist; |
| 28 class BookmarkModel; | 28 class BookmarkModel; |
| 29 class BrowserThemeProvider; | 29 class BrowserThemeProvider; |
| 30 class ChromeURLRequestContext; | 30 class ChromeURLRequestContext; |
| 31 class DownloadManager; | 31 class DownloadManager; |
| (...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 495 #endif | 495 #endif |
| 496 | 496 |
| 497 // This struct is used to pass the spellchecker object through the notification | 497 // This struct is used to pass the spellchecker object through the notification |
| 498 // NOTIFY_SPELLCHECKER_REINITIALIZED. This is used as the details for the | 498 // NOTIFY_SPELLCHECKER_REINITIALIZED. This is used as the details for the |
| 499 // notification service. | 499 // notification service. |
| 500 struct SpellcheckerReinitializedDetails { | 500 struct SpellcheckerReinitializedDetails { |
| 501 scoped_refptr<SpellChecker> spellchecker; | 501 scoped_refptr<SpellChecker> spellchecker; |
| 502 }; | 502 }; |
| 503 | 503 |
| 504 #endif // CHROME_BROWSER_PROFILE_H_ | 504 #endif // CHROME_BROWSER_PROFILE_H_ |
| OLD | NEW |