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

Unified Diff: services/url_response_disk_cache/url_response_disk_cache_impl.h

Issue 1364243002: Bundle core applicatons in the shell. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Follow review Created 5 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: services/url_response_disk_cache/url_response_disk_cache_impl.h
diff --git a/services/url_response_disk_cache/url_response_disk_cache_impl.h b/services/url_response_disk_cache/url_response_disk_cache_impl.h
index 593e0b3a792da68ff8fbd9a6c9fb34c69b120e22..6f4e64f10a942c6dffb480a4b1755063aac94d16 100644
--- a/services/url_response_disk_cache/url_response_disk_cache_impl.h
+++ b/services/url_response_disk_cache/url_response_disk_cache_impl.h
@@ -12,6 +12,7 @@
#include "mojo/public/cpp/bindings/strong_binding.h"
#include "mojo/services/url_response_disk_cache/public/interfaces/url_response_disk_cache.mojom.h"
#include "services/url_response_disk_cache/url_response_disk_cache_db.h"
+#include "services/url_response_disk_cache/url_response_disk_cache_delegate.h"
namespace mojo {
@@ -29,6 +30,7 @@ class URLResponseDiskCacheImpl : public URLResponseDiskCache {
bool force_clean);
URLResponseDiskCacheImpl(scoped_refptr<base::TaskRunner> task_runner,
+ URLResponseDiskCacheDelegate* delegate,
scoped_refptr<URLResponseDiskCacheDB> db,
const std::string& remote_application_url,
InterfaceRequest<URLResponseDiskCache> request);
@@ -64,6 +66,7 @@ class URLResponseDiskCacheImpl : public URLResponseDiskCache {
scoped_refptr<base::TaskRunner> task_runner_;
std::string request_origin_;
+ URLResponseDiskCacheDelegate* delegate_;
scoped_refptr<URLResponseDiskCacheDB> db_;
StrongBinding<URLResponseDiskCache> binding_;

Powered by Google App Engine
This is Rietveld 408576698