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

Unified Diff: services/url_response_disk_cache/url_response_disk_cache_app.cc

Issue 1276073004: Offline By Default (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Add missing explicits. 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_app.cc
diff --git a/services/url_response_disk_cache/url_response_disk_cache_app.cc b/services/url_response_disk_cache/url_response_disk_cache_app.cc
index 5d936950c7635e25ea5ac77259de6505ccc3e4f4..67632ae301dc1d5f14a4ef046426953c5abeefe6 100644
--- a/services/url_response_disk_cache/url_response_disk_cache_app.cc
+++ b/services/url_response_disk_cache/url_response_disk_cache_app.cc
@@ -9,18 +9,17 @@
namespace mojo {
-URLResponseDiskCacheApp::URLResponseDiskCacheApp(base::TaskRunner* task_runner)
- : task_runner_(task_runner) {
-}
+URLResponseDiskCacheApp::URLResponseDiskCacheApp(
+ scoped_refptr<base::TaskRunner> task_runner)
+ : task_runner_(task_runner) {}
URLResponseDiskCacheApp::~URLResponseDiskCacheApp() {
}
void URLResponseDiskCacheApp::Initialize(ApplicationImpl* app) {
base::CommandLine command_line(app->args());
- if (command_line.HasSwitch("clear")) {
- URLResponseDiskCacheImpl::ClearCache(task_runner_);
- }
+ bool force_clean = command_line.HasSwitch("clear");
+ db_ = URLResponseDiskCacheImpl::CreateDB(task_runner_, force_clean);
}
bool URLResponseDiskCacheApp::ConfigureIncomingConnection(
@@ -33,7 +32,7 @@ void URLResponseDiskCacheApp::Create(
ApplicationConnection* connection,
InterfaceRequest<URLResponseDiskCache> request) {
new URLResponseDiskCacheImpl(
- task_runner_, connection->GetRemoteApplicationURL(), request.Pass());
+ task_runner_, db_, connection->GetRemoteApplicationURL(), request.Pass());
}
} // namespace mojo

Powered by Google App Engine
This is Rietveld 408576698