| Index: mandoline/services/core_services/application_delegate_factory_default.cc
|
| diff --git a/mandoline/services/core_services/application_delegate_factory_default.cc b/mandoline/services/core_services/application_delegate_factory_default.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d4c6d5b818bfc9a9c2de214ad8f6b4474d9bf049
|
| --- /dev/null
|
| +++ b/mandoline/services/core_services/application_delegate_factory_default.cc
|
| @@ -0,0 +1,16 @@
|
| +// 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 "mojo/application/public/cpp/application_delegate.h"
|
| +
|
| +namespace core_services {
|
| +
|
| +scoped_ptr<mojo::ApplicationDelegate> CreatePlatformSpecificApplicationDelegate(
|
| + const std::string& url) {
|
| + return nullptr;
|
| +}
|
| +
|
| +} // namespace core_services
|
|
|