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

Side by Side Diff: chrome/browser/profiles/profile_impl.h

Issue 2777063008: Connect BackgroundFetch to the OfflineItemCollection
Patch Set: Code review comments 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 // This class gathers state related to a single user profile. 5 // This class gathers state related to a single user profile.
6 6
7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ 7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_
8 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ 8 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_
9 9
10 #include <memory> 10 #include <memory>
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 std::unique_ptr<content::ZoomLevelDelegate> CreateZoomLevelDelegate( 82 std::unique_ptr<content::ZoomLevelDelegate> CreateZoomLevelDelegate(
83 const base::FilePath& partition_path) override; 83 const base::FilePath& partition_path) override;
84 base::FilePath GetPath() const override; 84 base::FilePath GetPath() const override;
85 content::DownloadManagerDelegate* GetDownloadManagerDelegate() override; 85 content::DownloadManagerDelegate* GetDownloadManagerDelegate() override;
86 content::ResourceContext* GetResourceContext() override; 86 content::ResourceContext* GetResourceContext() override;
87 content::BrowserPluginGuestManager* GetGuestManager() override; 87 content::BrowserPluginGuestManager* GetGuestManager() override;
88 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override; 88 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override;
89 content::PushMessagingService* GetPushMessagingService() override; 89 content::PushMessagingService* GetPushMessagingService() override;
90 content::SSLHostStateDelegate* GetSSLHostStateDelegate() override; 90 content::SSLHostStateDelegate* GetSSLHostStateDelegate() override;
91 content::PermissionManager* GetPermissionManager() override; 91 content::PermissionManager* GetPermissionManager() override;
92 content::BackgroundFetchClient* GetBackgroundFetchClient() override;
92 content::BackgroundSyncController* GetBackgroundSyncController() override; 93 content::BackgroundSyncController* GetBackgroundSyncController() override;
93 net::URLRequestContextGetter* CreateRequestContext( 94 net::URLRequestContextGetter* CreateRequestContext(
94 content::ProtocolHandlerMap* protocol_handlers, 95 content::ProtocolHandlerMap* protocol_handlers,
95 content::URLRequestInterceptorScopedVector request_interceptors) override; 96 content::URLRequestInterceptorScopedVector request_interceptors) override;
96 net::URLRequestContextGetter* CreateRequestContextForStoragePartition( 97 net::URLRequestContextGetter* CreateRequestContextForStoragePartition(
97 const base::FilePath& partition_path, 98 const base::FilePath& partition_path,
98 bool in_memory, 99 bool in_memory,
99 content::ProtocolHandlerMap* protocol_handlers, 100 content::ProtocolHandlerMap* protocol_handlers,
100 content::URLRequestInterceptorScopedVector request_interceptors) override; 101 content::URLRequestInterceptorScopedVector request_interceptors) override;
101 net::URLRequestContextGetter* CreateMediaRequestContext() override; 102 net::URLRequestContextGetter* CreateMediaRequestContext() override;
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 // components/keyed_service/content/browser_context_keyed_service_factory.* 278 // components/keyed_service/content/browser_context_keyed_service_factory.*
278 279
279 Profile::Delegate* delegate_; 280 Profile::Delegate* delegate_;
280 281
281 chrome_browser_net::Predictor* predictor_; 282 chrome_browser_net::Predictor* predictor_;
282 283
283 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); 284 DISALLOW_COPY_AND_ASSIGN(ProfileImpl);
284 }; 285 };
285 286
286 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ 287 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698