| Index: mojo/edk/system/core_test_base.h
|
| diff --git a/mojo/edk/system/core_test_base.h b/mojo/edk/system/core_test_base.h
|
| index 3d2346a255cafea97418e158fb6af4f1f4d663a0..3d156e32e2cfd0f71e1ce24cd317fe504af925a5 100644
|
| --- a/mojo/edk/system/core_test_base.h
|
| +++ b/mojo/edk/system/core_test_base.h
|
| @@ -18,7 +18,6 @@ namespace mojo {
|
| namespace edk {
|
|
|
| class Core;
|
| -class Awakable;
|
|
|
| namespace test {
|
|
|
| @@ -57,11 +56,6 @@ class CoreTestBase_MockHandleInfo {
|
| unsigned GetReadDataCallCount() const;
|
| unsigned GetBeginReadDataCallCount() const;
|
| unsigned GetEndReadDataCallCount() const;
|
| - unsigned GetAddAwakableCallCount() const;
|
| - unsigned GetRemoveAwakableCallCount() const;
|
| -
|
| - size_t GetAddedAwakableSize() const;
|
| - Awakable* GetAddedAwakableAt(unsigned i) const;
|
|
|
| // For use by |MockDispatcher|:
|
| void IncrementCtorCallCount();
|
| @@ -75,12 +69,6 @@ class CoreTestBase_MockHandleInfo {
|
| void IncrementReadDataCallCount();
|
| void IncrementBeginReadDataCallCount();
|
| void IncrementEndReadDataCallCount();
|
| - void IncrementAddAwakableCallCount();
|
| - void IncrementRemoveAwakableCallCount();
|
| -
|
| - void AllowAddAwakable(bool alllow);
|
| - bool IsAddAwakableAllowed() const;
|
| - void AwakableWasAdded(Awakable*);
|
|
|
| private:
|
| mutable base::Lock lock_; // Protects the following members.
|
| @@ -95,11 +83,6 @@ class CoreTestBase_MockHandleInfo {
|
| unsigned read_data_call_count_;
|
| unsigned begin_read_data_call_count_;
|
| unsigned end_read_data_call_count_;
|
| - unsigned add_awakable_call_count_;
|
| - unsigned remove_awakable_call_count_;
|
| -
|
| - bool add_awakable_allowed_;
|
| - std::vector<Awakable*> added_awakables_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(CoreTestBase_MockHandleInfo);
|
| };
|
|
|