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

Unified Diff: mojo/shell/test_package_manager.cc

Issue 1352663002: Extract some stuff into PackageManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . 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
« no previous file with comments | « mojo/shell/test_package_manager.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/test_package_manager.cc
diff --git a/mojo/shell/test_package_manager.cc b/mojo/shell/test_package_manager.cc
new file mode 100644
index 0000000000000000000000000000000000000000..726d3c8f986ccc0ba556021b0dbd8fed3bd45251
--- /dev/null
+++ b/mojo/shell/test_package_manager.cc
@@ -0,0 +1,54 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "mojo/shell/test_package_manager.h"
+
+#include "base/logging.h"
+#include "mojo/shell/fetcher.h"
+#include "url/gurl.h"
+
+namespace mojo {
+namespace shell {
+
+TestPackageManager::TestPackageManager() {}
+TestPackageManager::~TestPackageManager() {}
+
+void TestPackageManager::RegisterContentHandler(
+ const std::string& mime_type,
+ const GURL& content_handler_url) {
+ DCHECK(content_handler_url.is_valid())
+ << "Content handler URL is invalid for mime type " << mime_type;
+ mime_type_to_url_[mime_type] = content_handler_url;
+}
+
+void TestPackageManager::SetApplicationManager(ApplicationManager* manager) {
+}
+
+GURL TestPackageManager::ResolveURL(const GURL& url) {
+ return url;
+}
+
+void TestPackageManager::FetchRequest(
+ URLRequestPtr request,
+ const Fetcher::FetchCallback& loader_callback) {}
+
+bool TestPackageManager::HandleWithContentHandler(
+ Fetcher* fetcher,
+ const GURL& unresolved_url,
+ base::TaskRunner* task_runner,
+ URLResponsePtr* new_response,
+ GURL* content_handler_url,
+ std::string* qualifier) {
+ MimeTypeToURLMap::iterator iter = mime_type_to_url_.find(fetcher->MimeType());
+ if (iter != mime_type_to_url_.end()) {
+ *new_response = fetcher->AsURLResponse(task_runner, 0);
+ *content_handler_url = iter->second;
+ *qualifier = (*new_response)->site.To<std::string>();
+ return true;
+ }
+ return false;
+}
+
+} // namespace shell
+} // namespace mojo
« no previous file with comments | « mojo/shell/test_package_manager.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698