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

Unified Diff: mojo/shell/test_package_manager.cc

Issue 1701933004: Remove the old package manager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@am2
Patch Set: . Created 4 years, 10 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
deleted file mode 100644
index a388e20854d4fb24655d5b40102ae877f8bac8f0..0000000000000000000000000000000000000000
--- a/mojo/shell/test_package_manager.cc
+++ /dev/null
@@ -1,49 +0,0 @@
-// 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 <stdint.h>
-
-#include "mojo/shell/test_package_manager.h"
-
-#include "url/gurl.h"
-
-namespace mojo {
-namespace shell {
-namespace test {
-
-TestPackageManager::TestPackageManager() {}
-TestPackageManager::~TestPackageManager() {}
-
-void TestPackageManager::SetApplicationManager(ApplicationManager* manager) {}
-void TestPackageManager::BuiltinAppLoaded(const GURL& url) {}
-void TestPackageManager::FetchRequest(
- URLRequestPtr request,
- const Fetcher::FetchCallback& loader_callback) {}
-uint32_t TestPackageManager::HandleWithContentHandler(
- Fetcher* fetcher,
- const Identity& source,
- const GURL& target_url,
- const CapabilityFilter& target_filter,
- InterfaceRequest<shell::mojom::ShellClient>* request) {
- return 0;
-}
-bool TestPackageManager::IsURLInCatalog(const std::string& url) const {
- return true;
-}
-std::string TestPackageManager::GetApplicationName(
- const std::string& url) const { return url; }
-GURL TestPackageManager::ResolveMojoURL(const GURL& mojo_url) {
- return mojo_url;
-}
-uint32_t TestPackageManager::StartContentHandler(
- const Identity& source,
- const Identity& content_handler,
- const GURL& url,
- mojom::ShellClientRequest request) {
- return mojo::shell::mojom::Shell::kInvalidApplicationID;
-}
-
-} // namespace test
-} // 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