summaryrefslogtreecommitdiffstats
path: root/mandoline/services/core_services/application_delegate_factory_notandroid.cc
blob: 3b9809784d0114e200b20d92dac2792062c7b22a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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 "mandoline/services/core_services/application_delegate_factory.h"

#include "components/mus/view_manager_app.h"
#include "components/resource_provider/resource_provider_app.h"
#include "mojo/services/network/network_service_delegate.h"

namespace core_services {

scoped_ptr<mojo::ApplicationDelegate> CreateApplicationDelegateNotAndroid(
    const std::string& url) {
  if (url == "mojo://network_service/")
    return make_scoped_ptr(new mojo::NetworkServiceDelegate);
  if (url == "mojo://resource_provider/") {
    return make_scoped_ptr(
        new resource_provider::ResourceProviderApp("mojo:core_services"));
  }
  if (url == "mojo://mus/")
    return make_scoped_ptr(new view_manager::ViewManagerApp);
  return nullptr;
}

}  // namespace core_services