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

Side by Side Diff: content/shell/browser/shell_browser_context.h

Issue 2777063008: Connect BackgroundFetch to the OfflineItemCollection
Patch Set: Created 3 years, 8 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_SHELL_BROWSER_SHELL_BROWSER_CONTEXT_H_ 5 #ifndef CONTENT_SHELL_BROWSER_SHELL_BROWSER_CONTEXT_H_
6 #define CONTENT_SHELL_BROWSER_SHELL_BROWSER_CONTEXT_H_ 6 #define CONTENT_SHELL_BROWSER_SHELL_BROWSER_CONTEXT_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 std::unique_ptr<ZoomLevelDelegate> CreateZoomLevelDelegate( 44 std::unique_ptr<ZoomLevelDelegate> CreateZoomLevelDelegate(
45 const base::FilePath& partition_path) override; 45 const base::FilePath& partition_path) override;
46 bool IsOffTheRecord() const override; 46 bool IsOffTheRecord() const override;
47 DownloadManagerDelegate* GetDownloadManagerDelegate() override; 47 DownloadManagerDelegate* GetDownloadManagerDelegate() override;
48 ResourceContext* GetResourceContext() override; 48 ResourceContext* GetResourceContext() override;
49 BrowserPluginGuestManager* GetGuestManager() override; 49 BrowserPluginGuestManager* GetGuestManager() override;
50 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override; 50 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override;
51 PushMessagingService* GetPushMessagingService() override; 51 PushMessagingService* GetPushMessagingService() override;
52 SSLHostStateDelegate* GetSSLHostStateDelegate() override; 52 SSLHostStateDelegate* GetSSLHostStateDelegate() override;
53 PermissionManager* GetPermissionManager() override; 53 PermissionManager* GetPermissionManager() override;
54 BackgroundFetchClient* GetBackgroundFetchClient() override;
54 BackgroundSyncController* GetBackgroundSyncController() override; 55 BackgroundSyncController* GetBackgroundSyncController() override;
55 net::URLRequestContextGetter* CreateRequestContext( 56 net::URLRequestContextGetter* CreateRequestContext(
56 ProtocolHandlerMap* protocol_handlers, 57 ProtocolHandlerMap* protocol_handlers,
57 URLRequestInterceptorScopedVector request_interceptors) override; 58 URLRequestInterceptorScopedVector request_interceptors) override;
58 net::URLRequestContextGetter* CreateRequestContextForStoragePartition( 59 net::URLRequestContextGetter* CreateRequestContextForStoragePartition(
59 const base::FilePath& partition_path, 60 const base::FilePath& partition_path,
60 bool in_memory, 61 bool in_memory,
61 ProtocolHandlerMap* protocol_handlers, 62 ProtocolHandlerMap* protocol_handlers,
62 URLRequestInterceptorScopedVector request_interceptors) override; 63 URLRequestInterceptorScopedVector request_interceptors) override;
63 net::URLRequestContextGetter* CreateMediaRequestContext() override; 64 net::URLRequestContextGetter* CreateMediaRequestContext() override;
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 base::FilePath path_; 119 base::FilePath path_;
119 BrowserPluginGuestManager* guest_manager_; 120 BrowserPluginGuestManager* guest_manager_;
120 scoped_refptr<ShellURLRequestContextGetter> url_request_getter_; 121 scoped_refptr<ShellURLRequestContextGetter> url_request_getter_;
121 122
122 DISALLOW_COPY_AND_ASSIGN(ShellBrowserContext); 123 DISALLOW_COPY_AND_ASSIGN(ShellBrowserContext);
123 }; 124 };
124 125
125 } // namespace content 126 } // namespace content
126 127
127 #endif // CONTENT_SHELL_BROWSER_SHELL_BROWSER_CONTEXT_H_ 128 #endif // CONTENT_SHELL_BROWSER_SHELL_BROWSER_CONTEXT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698