Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(323)

Side by Side Diff: content/public/browser/resource_context.h

Issue 9375024: Get IPC working for Indexed DB in shared workers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove param_traits Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_RESOURCE_CONTEXT_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_RESOURCE_CONTEXT_H_
6 #define CONTENT_PUBLIC_BROWSER_RESOURCE_CONTEXT_H_ 6 #define CONTENT_PUBLIC_BROWSER_RESOURCE_CONTEXT_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 9
10 class AudioManager; 10 class AudioManager;
11 class ChromeAppCacheService; 11 class ChromeAppCacheService;
12 class ChromeBlobStorageContext; 12 class ChromeBlobStorageContext;
13 class MediaObserver; 13 class MediaObserver;
14 class WebKitContext;
14 namespace fileapi { 15 namespace fileapi {
15 class FileSystemContext; 16 class FileSystemContext;
16 } // namespace fileapi 17 } // namespace fileapi
17 namespace media_stream { 18 namespace media_stream {
18 class MediaStreamManager; 19 class MediaStreamManager;
19 } // namespace media_stream 20 } // namespace media_stream
20 namespace net { 21 namespace net {
21 class HostResolver; 22 class HostResolver;
22 class URLRequestContext; 23 class URLRequestContext;
23 } // namespace net 24 } // namespace net
(...skipping 19 matching lines...) Expand all
43 virtual net::URLRequestContext* GetRequestContext() = 0; 44 virtual net::URLRequestContext* GetRequestContext() = 0;
44 virtual ChromeAppCacheService* GetAppCacheService() = 0; 45 virtual ChromeAppCacheService* GetAppCacheService() = 0;
45 virtual webkit_database::DatabaseTracker* GetDatabaseTracker() = 0; 46 virtual webkit_database::DatabaseTracker* GetDatabaseTracker() = 0;
46 virtual fileapi::FileSystemContext* GetFileSystemContext() = 0; 47 virtual fileapi::FileSystemContext* GetFileSystemContext() = 0;
47 virtual ChromeBlobStorageContext* GetBlobStorageContext() = 0; 48 virtual ChromeBlobStorageContext* GetBlobStorageContext() = 0;
48 virtual quota::QuotaManager* GetQuotaManager() = 0; 49 virtual quota::QuotaManager* GetQuotaManager() = 0;
49 virtual HostZoomMap* GetHostZoomMap() = 0; 50 virtual HostZoomMap* GetHostZoomMap() = 0;
50 virtual MediaObserver* GetMediaObserver() = 0; 51 virtual MediaObserver* GetMediaObserver() = 0;
51 virtual media_stream::MediaStreamManager* GetMediaStreamManager() = 0; 52 virtual media_stream::MediaStreamManager* GetMediaStreamManager() = 0;
52 virtual AudioManager* GetAudioManager() = 0; 53 virtual AudioManager* GetAudioManager() = 0;
54 virtual WebKitContext* GetWebKitContext() = 0;
53 }; 55 };
54 56
55 } // namespace content 57 } // namespace content
56 58
57 #endif // CONTENT_PUBLIC_BROWSER_RESOURCE_CONTEXT_H_ 59 #endif // CONTENT_PUBLIC_BROWSER_RESOURCE_CONTEXT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698