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

Side by Side Diff: android_webview/browser/aw_browser_context.h

Issue 2777063008: Connect BackgroundFetch to the OfflineItemCollection
Patch Set: Fixed incognito check and added tests 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 (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 ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ 5 #ifndef ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_
6 #define ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ 6 #define ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 const base::FilePath& partition_path) override; 94 const base::FilePath& partition_path) override;
95 base::FilePath GetPath() const override; 95 base::FilePath GetPath() const override;
96 bool IsOffTheRecord() const override; 96 bool IsOffTheRecord() const override;
97 content::ResourceContext* GetResourceContext() override; 97 content::ResourceContext* GetResourceContext() override;
98 content::DownloadManagerDelegate* GetDownloadManagerDelegate() override; 98 content::DownloadManagerDelegate* GetDownloadManagerDelegate() override;
99 content::BrowserPluginGuestManager* GetGuestManager() override; 99 content::BrowserPluginGuestManager* GetGuestManager() override;
100 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override; 100 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override;
101 content::PushMessagingService* GetPushMessagingService() override; 101 content::PushMessagingService* GetPushMessagingService() override;
102 content::SSLHostStateDelegate* GetSSLHostStateDelegate() override; 102 content::SSLHostStateDelegate* GetSSLHostStateDelegate() override;
103 content::PermissionManager* GetPermissionManager() override; 103 content::PermissionManager* GetPermissionManager() override;
104 content::BackgroundFetchClient* GetBackgroundFetchClient() override;
104 content::BackgroundSyncController* GetBackgroundSyncController() override; 105 content::BackgroundSyncController* GetBackgroundSyncController() override;
105 net::URLRequestContextGetter* CreateRequestContext( 106 net::URLRequestContextGetter* CreateRequestContext(
106 content::ProtocolHandlerMap* protocol_handlers, 107 content::ProtocolHandlerMap* protocol_handlers,
107 content::URLRequestInterceptorScopedVector request_interceptors) override; 108 content::URLRequestInterceptorScopedVector request_interceptors) override;
108 net::URLRequestContextGetter* CreateRequestContextForStoragePartition( 109 net::URLRequestContextGetter* CreateRequestContextForStoragePartition(
109 const base::FilePath& partition_path, 110 const base::FilePath& partition_path,
110 bool in_memory, 111 bool in_memory,
111 content::ProtocolHandlerMap* protocol_handlers, 112 content::ProtocolHandlerMap* protocol_handlers,
112 content::URLRequestInterceptorScopedVector request_interceptors) override; 113 content::URLRequestInterceptorScopedVector request_interceptors) override;
113 net::URLRequestContextGetter* CreateMediaRequestContext() override; 114 net::URLRequestContextGetter* CreateMediaRequestContext() override;
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 scoped_refptr<safe_browsing::RemoteSafeBrowsingDatabaseManager> 158 scoped_refptr<safe_browsing::RemoteSafeBrowsingDatabaseManager>
158 safe_browsing_db_manager_; 159 safe_browsing_db_manager_;
159 bool safe_browsing_db_manager_started_ = false; 160 bool safe_browsing_db_manager_started_ = false;
160 161
161 DISALLOW_COPY_AND_ASSIGN(AwBrowserContext); 162 DISALLOW_COPY_AND_ASSIGN(AwBrowserContext);
162 }; 163 };
163 164
164 } // namespace android_webview 165 } // namespace android_webview
165 166
166 #endif // ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ 167 #endif // ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698