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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/hash_tables.h" | 9 #include "base/hash_tables.h" |
10 | 10 |
(...skipping 10 matching lines...) Expand all Loading... |
21 } | 21 } |
22 | 22 |
23 namespace webkit_database { | 23 namespace webkit_database { |
24 class DatabaseTracker; | 24 class DatabaseTracker; |
25 } | 25 } |
26 | 26 |
27 class ChromeAppCacheService; | 27 class ChromeAppCacheService; |
28 class ChromeBlobStorageContext; | 28 class ChromeBlobStorageContext; |
29 class FilePath; | 29 class FilePath; |
30 class SpeechInputPreferences; | 30 class SpeechInputPreferences; |
31 class HostZoomMap; | |
32 class SSLHostState; | 31 class SSLHostState; |
33 class WebKitContext; | 32 class WebKitContext; |
34 | 33 |
35 namespace content { | 34 namespace content { |
36 | 35 |
37 class DownloadManager; | 36 class DownloadManager; |
38 class GeolocationPermissionContext; | 37 class GeolocationPermissionContext; |
| 38 class HostZoomMap; |
39 class ResourceContext; | 39 class ResourceContext; |
40 | 40 |
41 // This class holds the context needed for a browsing session. | 41 // This class holds the context needed for a browsing session. |
42 // It lives on the UI thread. | 42 // It lives on the UI thread. |
43 class BrowserContext { | 43 class BrowserContext { |
44 public: | 44 public: |
45 virtual ~BrowserContext() {} | 45 virtual ~BrowserContext() {} |
46 | 46 |
47 // Returns the path of the directory where this context's data is stored. | 47 // Returns the path of the directory where this context's data is stored. |
48 virtual FilePath GetPath() = 0; | 48 virtual FilePath GetPath() = 0; |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 struct hash<content::BrowserContext*> { | 113 struct hash<content::BrowserContext*> { |
114 std::size_t operator()(content::BrowserContext* const& p) const { | 114 std::size_t operator()(content::BrowserContext* const& p) const { |
115 return reinterpret_cast<std::size_t>(p); | 115 return reinterpret_cast<std::size_t>(p); |
116 } | 116 } |
117 }; | 117 }; |
118 | 118 |
119 } // namespace BASE_HASH_NAMESPACE | 119 } // namespace BASE_HASH_NAMESPACE |
120 #endif | 120 #endif |
121 | 121 |
122 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_CONTEXT_H_ | 122 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_CONTEXT_H_ |
OLD | NEW |