blob: b4b17826b465edfbfb873d042ea305f3e5f7a961 [file] [log] [blame]
// Copyright 2018 The Chromium OS 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 "ml/machine_learning_service_impl.h"
#include <utility>
namespace ml {
MachineLearningServiceImpl::MachineLearningServiceImpl(
mojo::ScopedMessagePipeHandle pipe, base::Closure connection_error_handler)
: binding_(this, std::move(pipe)) {
binding_.set_connection_error_handler(std::move(connection_error_handler));
}
void MachineLearningServiceImpl::GetModelProvider(
chromeos::machine_learning::mojom::ModelProviderRequest request) {
NOTIMPLEMENTED();
}
} // namespace ml