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

Unified Diff: mojo/application_manager/application_loader.cc

Issue 741453002: Make sure that Content Handled application can be connected multiple times. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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: mojo/application_manager/application_loader.cc
diff --git a/mojo/application_manager/application_loader.cc b/mojo/application_manager/application_loader.cc
deleted file mode 100644
index 60dec669d7229d857fd554694d3904b86b9f99a8..0000000000000000000000000000000000000000
--- a/mojo/application_manager/application_loader.cc
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright 2014 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/application_manager/application_loader.h"
-
-#include "base/logging.h"
-
-namespace mojo {
-
-ApplicationLoader::SimpleLoadCallbacks::SimpleLoadCallbacks(
- ScopedMessagePipeHandle shell_handle)
- : shell_handle_(shell_handle.Pass()) {
-}
-
-ApplicationLoader::SimpleLoadCallbacks::~SimpleLoadCallbacks() {
-}
-
-ScopedMessagePipeHandle
-ApplicationLoader::SimpleLoadCallbacks::RegisterApplication() {
- return shell_handle_.Pass();
-}
-
-void ApplicationLoader::SimpleLoadCallbacks::LoadWithContentHandler(
- const GURL& content_handle_url,
- URLResponsePtr url_response) {
- NOTREACHED();
-}
-
-} // namespace mojo

Powered by Google App Engine
This is Rietveld 408576698