blob: 0c78c3275010ce43a722bbd476490f23b6b28c22 [file] [log] [blame]
Torne (Richard Coles)6e8cce62014-08-19 13:00:08 +01001// Copyright 2014 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "mojo/application_manager/application_loader.h"
6
7#include "base/logging.h"
8
9namespace mojo {
10
11ApplicationLoader::SimpleLoadCallbacks::SimpleLoadCallbacks(
12 ScopedMessagePipeHandle shell_handle)
13 : shell_handle_(shell_handle.Pass()) {
14}
15
16ApplicationLoader::SimpleLoadCallbacks::~SimpleLoadCallbacks() {
17}
18
19ScopedMessagePipeHandle
20ApplicationLoader::SimpleLoadCallbacks::RegisterApplication() {
21 return shell_handle_.Pass();
22}
23
24void ApplicationLoader::SimpleLoadCallbacks::LoadWithContentHandler(
25 const GURL& content_handle_url,
26 URLResponsePtr content) {
27 NOTREACHED();
28}
29
30} // namespace mojo