| 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 CONTENT_PUBLIC_BROWSER_BROWSER_CONTEXT_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_BROWSER_CONTEXT_H_ |
| 6 #define CONTENT_PUBLIC_BROWSER_BROWSER_CONTEXT_H_ | 6 #define CONTENT_PUBLIC_BROWSER_BROWSER_CONTEXT_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 class SpecialStoragePolicy; | 46 class SpecialStoragePolicy; |
| 47 } | 47 } |
| 48 | 48 |
| 49 namespace content { | 49 namespace content { |
| 50 | 50 |
| 51 class BackgroundSyncController; | 51 class BackgroundSyncController; |
| 52 class BlobHandle; | 52 class BlobHandle; |
| 53 class BrowserPluginGuestManager; | 53 class BrowserPluginGuestManager; |
| 54 class DownloadManager; | 54 class DownloadManager; |
| 55 class DownloadManagerDelegate; | 55 class DownloadManagerDelegate; |
| 56 class IndexedDBContext; | |
| 57 class PermissionManager; | 56 class PermissionManager; |
| 58 class PushMessagingService; | 57 class PushMessagingService; |
| 59 class ResourceContext; | 58 class ResourceContext; |
| 60 class ServiceManagerConnection; | 59 class ServiceManagerConnection; |
| 61 class SiteInstance; | 60 class SiteInstance; |
| 62 class StoragePartition; | 61 class StoragePartition; |
| 63 class SSLHostStateDelegate; | 62 class SSLHostStateDelegate; |
| 64 | 63 |
| 65 // A mapping from the scheme name to the protocol handler that services its | 64 // A mapping from the scheme name to the protocol handler that services its |
| 66 // content. | 65 // content. |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 // called only once per partition_path. | 242 // called only once per partition_path. |
| 244 virtual net::URLRequestContextGetter* | 243 virtual net::URLRequestContextGetter* |
| 245 CreateMediaRequestContextForStoragePartition( | 244 CreateMediaRequestContextForStoragePartition( |
| 246 const base::FilePath& partition_path, | 245 const base::FilePath& partition_path, |
| 247 bool in_memory) = 0; | 246 bool in_memory) = 0; |
| 248 }; | 247 }; |
| 249 | 248 |
| 250 } // namespace content | 249 } // namespace content |
| 251 | 250 |
| 252 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_CONTEXT_H_ | 251 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_CONTEXT_H_ |
| OLD | NEW |