| 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 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ |    5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ | 
|    6 #define CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ |    6 #define CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ | 
|    7  |    7  | 
|    8 #include <string> |    8 #include <string> | 
|    9  |    9  | 
|   10 #include "base/basictypes.h" |   10 #include "base/basictypes.h" | 
|   11 #include "base/callback_forward.h" |   11 #include "base/callback_forward.h" | 
|   12 #include "base/file_path.h" |   12 #include "base/file_path.h" | 
|   13 #include "base/memory/ref_counted.h" |   13 #include "base/memory/ref_counted.h" | 
|   14 #include "base/memory/scoped_ptr.h" |   14 #include "base/memory/scoped_ptr.h" | 
|   15 #include "base/memory/weak_ptr.h" |   15 #include "base/memory/weak_ptr.h" | 
|   16 #include "base/synchronization/lock.h" |   16 #include "base/synchronization/lock.h" | 
 |   17 #include "chrome/browser/api/prefs/pref_member.h" | 
|   17 #include "chrome/browser/io_thread.h" |   18 #include "chrome/browser/io_thread.h" | 
|   18 #include "chrome/browser/net/chrome_url_request_context.h" |   19 #include "chrome/browser/net/chrome_url_request_context.h" | 
|   19 #include "chrome/browser/prefs/pref_member.h" |  | 
|   20 #include "content/public/browser/resource_context.h" |   20 #include "content/public/browser/resource_context.h" | 
|   21 #include "net/cookies/cookie_monster.h" |   21 #include "net/cookies/cookie_monster.h" | 
|   22 #include "net/url_request/url_request_job_factory.h" |   22 #include "net/url_request/url_request_job_factory.h" | 
|   23  |   23  | 
|   24 class CookieSettings; |   24 class CookieSettings; | 
|   25 class DesktopNotificationService; |   25 class DesktopNotificationService; | 
|   26 class ExtensionInfoMap; |   26 class ExtensionInfoMap; | 
|   27 class HostContentSettingsMap; |   27 class HostContentSettingsMap; | 
|   28 class Profile; |   28 class Profile; | 
|   29 class ProtocolHandlerRegistry; |   29 class ProtocolHandlerRegistry; | 
| (...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  377  |  377  | 
|  378   // TODO(jhawkins): Remove once crbug.com/102004 is fixed. |  378   // TODO(jhawkins): Remove once crbug.com/102004 is fixed. | 
|  379   bool initialized_on_UI_thread_; |  379   bool initialized_on_UI_thread_; | 
|  380  |  380  | 
|  381   bool is_incognito_; |  381   bool is_incognito_; | 
|  382  |  382  | 
|  383   DISALLOW_COPY_AND_ASSIGN(ProfileIOData); |  383   DISALLOW_COPY_AND_ASSIGN(ProfileIOData); | 
|  384 }; |  384 }; | 
|  385  |  385  | 
|  386 #endif  // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ |  386 #endif  // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ | 
| OLD | NEW |