// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "math_service.h" namespace math { MathService::MathService(mojo::PendingReceiver<mojom::MathService> receiver) : … { … } MathService::~MathService() = default; void MathService::Divide(int32_t dividend, int32_t divisor, DivideCallback callback) { … } } // namespace math