blob: 3a54a1642ec19dc010495e4d6c164c013d9fbbf0 [file] [log] [blame]
// Copyright 2018 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.
#ifndef COMPONENTS_ARC_TEST_FAKE_TIMER_INSTANCE_H_
#define COMPONENTS_ARC_TEST_FAKE_TIMER_INSTANCE_H_
#include <vector>
#include "components/arc/mojom/timer.mojom.h"
namespace arc {
class FakeTimerInstance : public mojom::TimerInstance {
public:
FakeTimerInstance();
~FakeTimerInstance() override;
// mojom::TimerInstance overrides:
void Init(mojom::TimerHostPtr host_ptr, InitCallback callback) override;
mojom::TimerHost* GetTimerHost() const;
private:
mojom::TimerHostPtr host_ptr_;
DISALLOW_COPY_AND_ASSIGN(FakeTimerInstance);
};
} // namespace arc
#endif // COMPONENTS_ARC_TEST_FAKE_TIMER_INSTANCE_H_