Repo created
This commit is contained in:
parent
81b91f4139
commit
f8c34fa5ee
22732 changed files with 4815320 additions and 2 deletions
76
TMessagesProj/jni/voip/webrtc/base/timer/mock_timer.h
Normal file
76
TMessagesProj/jni/voip/webrtc/base/timer/mock_timer.h
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
// Copyright 2014 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 BASE_TIMER_MOCK_TIMER_H_
|
||||
#define BASE_TIMER_MOCK_TIMER_H_
|
||||
|
||||
#include "base/test/simple_test_tick_clock.h"
|
||||
#include "base/timer/timer.h"
|
||||
|
||||
namespace base {
|
||||
|
||||
class TestSimpleTaskRunner;
|
||||
|
||||
// A mock implementation of base::OneShotTimer which requires being explicitly
|
||||
// Fire()'d.
|
||||
// Prefer using TaskEnvironment::MOCK_TIME + FastForward*() to this when
|
||||
// possible.
|
||||
class MockOneShotTimer : public OneShotTimer {
|
||||
public:
|
||||
MockOneShotTimer();
|
||||
~MockOneShotTimer() override;
|
||||
|
||||
// Testing method.
|
||||
void Fire();
|
||||
|
||||
private:
|
||||
// Timer implementation.
|
||||
// MockOneShotTimer doesn't support SetTaskRunner. Do not use this.
|
||||
void SetTaskRunner(scoped_refptr<SequencedTaskRunner> task_runner) override;
|
||||
|
||||
SimpleTestTickClock clock_;
|
||||
scoped_refptr<TestSimpleTaskRunner> test_task_runner_;
|
||||
};
|
||||
|
||||
// See MockOneShotTimer's comment. Prefer using
|
||||
// TaskEnvironment::MOCK_TIME.
|
||||
class MockRepeatingTimer : public RepeatingTimer {
|
||||
public:
|
||||
MockRepeatingTimer();
|
||||
~MockRepeatingTimer() override;
|
||||
|
||||
// Testing method.
|
||||
void Fire();
|
||||
|
||||
private:
|
||||
// Timer implementation.
|
||||
// MockRepeatingTimer doesn't support SetTaskRunner. Do not use this.
|
||||
void SetTaskRunner(scoped_refptr<SequencedTaskRunner> task_runner) override;
|
||||
|
||||
SimpleTestTickClock clock_;
|
||||
scoped_refptr<TestSimpleTaskRunner> test_task_runner_;
|
||||
};
|
||||
|
||||
// See MockOneShotTimer's comment. Prefer using
|
||||
// TaskEnvironment::MOCK_TIME.
|
||||
class MockRetainingOneShotTimer : public RetainingOneShotTimer {
|
||||
public:
|
||||
MockRetainingOneShotTimer();
|
||||
~MockRetainingOneShotTimer() override;
|
||||
|
||||
// Testing method.
|
||||
void Fire();
|
||||
|
||||
private:
|
||||
// Timer implementation.
|
||||
// MockRetainingOneShotTimer doesn't support SetTaskRunner. Do not use this.
|
||||
void SetTaskRunner(scoped_refptr<SequencedTaskRunner> task_runner) override;
|
||||
|
||||
SimpleTestTickClock clock_;
|
||||
scoped_refptr<TestSimpleTaskRunner> test_task_runner_;
|
||||
};
|
||||
|
||||
} // namespace base
|
||||
|
||||
#endif // BASE_TIMER_MOCK_TIMER_H_
|
||||
Loading…
Add table
Add a link
Reference in a new issue