| OLD | NEW |
| 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 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_IMPL_H_ | 7 #ifndef CHROME_BROWSER_PROFILE_IMPL_H_ |
| 8 #define CHROME_BROWSER_PROFILE_IMPL_H_ | 8 #define CHROME_BROWSER_PROFILE_IMPL_H_ |
| 9 #pragma once | 9 #pragma once |
| 10 | 10 |
| 11 #include <set> | |
| 12 #include <string> | 11 #include <string> |
| 13 | 12 |
| 14 #include "chrome/browser/profile.h" | 13 #include "chrome/browser/profile.h" |
| 15 #include "chrome/browser/spellcheck_host_observer.h" | 14 #include "chrome/browser/spellcheck_host_observer.h" |
| 16 #include "chrome/common/notification_registrar.h" | 15 #include "chrome/common/notification_registrar.h" |
| 17 | 16 |
| 18 #if defined(OS_CHROMEOS) | 17 #if defined(OS_CHROMEOS) |
| 19 #include "chrome/browser/chromeos/preferences.h" | 18 #include "chrome/browser/chromeos/preferences.h" |
| 20 #endif | 19 #endif |
| 21 | 20 |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 scoped_refptr<history::TopSites> top_sites_; // For history and thumbnails. | 219 scoped_refptr<history::TopSites> top_sites_; // For history and thumbnails. |
| 221 | 220 |
| 222 #if defined(OS_CHROMEOS) | 221 #if defined(OS_CHROMEOS) |
| 223 chromeos::Preferences chromeos_preferences_; | 222 chromeos::Preferences chromeos_preferences_; |
| 224 #endif | 223 #endif |
| 225 | 224 |
| 226 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 225 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 227 }; | 226 }; |
| 228 | 227 |
| 229 #endif // CHROME_BROWSER_PROFILE_IMPL_H_ | 228 #endif // CHROME_BROWSER_PROFILE_IMPL_H_ |
| OLD | NEW |