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

Unified Diff: shell/service_cache_loader.cc

Issue 1088533003: Adding URLResponse Disk Cache to mojo. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Remove unused function Created 5 years, 7 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: shell/service_cache_loader.cc
diff --git a/shell/android/android_handler_loader.cc b/shell/service_cache_loader.cc
similarity index 59%
copy from shell/android/android_handler_loader.cc
copy to shell/service_cache_loader.cc
index 9909a8567340cd6054414853d4f4ee5bf760d3fe..3fdf2fb51563b5d4c637beb633f8e50fb11970f5 100644
--- a/shell/android/android_handler_loader.cc
+++ b/shell/service_cache_loader.cc
@@ -2,22 +2,22 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "shell/android/android_handler_loader.h"
+#include "shell/service_cache_loader.h"
namespace shell {
-AndroidHandlerLoader::AndroidHandlerLoader() {
+ServiceCacheLoader::ServiceCacheLoader() {
}
-AndroidHandlerLoader::~AndroidHandlerLoader() {
+ServiceCacheLoader::~ServiceCacheLoader() {
}
-void AndroidHandlerLoader::Load(
+void ServiceCacheLoader::Load(
const GURL& url,
mojo::InterfaceRequest<mojo::Application> application_request) {
DCHECK(application_request.is_pending());
application_.reset(
- new mojo::ApplicationImpl(&android_handler_, application_request.Pass()));
+ new mojo::ApplicationImpl(&service_cache_, application_request.Pass()));
}
} // namespace shell
« shell/application_manager/network_fetcher.cc ('K') | « shell/service_cache_loader.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698