Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(43)

Side by Side Diff: base/message_loop/message_loop_test.h

Issue 2818533003: Make nesting/running states a RunLoop rather than a MessageLoop concept. (Closed)
Patch Set: fix compile and add RunLoopTests Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/message_loop/message_loop.cc ('k') | base/message_loop/message_loop_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef BASE_MESSAGE_LOOP_MESSAGE_LOOP_TEST_H_ 5 #ifndef BASE_MESSAGE_LOOP_MESSAGE_LOOP_TEST_H_
6 #define BASE_MESSAGE_LOOP_MESSAGE_LOOP_TEST_H_ 6 #define BASE_MESSAGE_LOOP_MESSAGE_LOOP_TEST_H_
7 7
8 #include "base/message_loop/message_loop.h" 8 #include "base/message_loop/message_loop.h"
9 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/include/gtest/gtest.h"
10 10
(...skipping 10 matching lines...) Expand all
21 void RunTest_PostTask(MessagePumpFactory factory); 21 void RunTest_PostTask(MessagePumpFactory factory);
22 void RunTest_PostDelayedTask_Basic(MessagePumpFactory factory); 22 void RunTest_PostDelayedTask_Basic(MessagePumpFactory factory);
23 void RunTest_PostDelayedTask_InDelayOrder(MessagePumpFactory factory); 23 void RunTest_PostDelayedTask_InDelayOrder(MessagePumpFactory factory);
24 void RunTest_PostDelayedTask_InPostOrder(MessagePumpFactory factory); 24 void RunTest_PostDelayedTask_InPostOrder(MessagePumpFactory factory);
25 void RunTest_PostDelayedTask_InPostOrder_2(MessagePumpFactory factory); 25 void RunTest_PostDelayedTask_InPostOrder_2(MessagePumpFactory factory);
26 void RunTest_PostDelayedTask_InPostOrder_3(MessagePumpFactory factory); 26 void RunTest_PostDelayedTask_InPostOrder_3(MessagePumpFactory factory);
27 void RunTest_PostDelayedTask_SharedTimer(MessagePumpFactory factory); 27 void RunTest_PostDelayedTask_SharedTimer(MessagePumpFactory factory);
28 void RunTest_EnsureDeletion(MessagePumpFactory factory); 28 void RunTest_EnsureDeletion(MessagePumpFactory factory);
29 void RunTest_EnsureDeletion_Chain(MessagePumpFactory factory); 29 void RunTest_EnsureDeletion_Chain(MessagePumpFactory factory);
30 void RunTest_Nesting(MessagePumpFactory factory); 30 void RunTest_Nesting(MessagePumpFactory factory);
31 void RunTest_NestingObserver(MessagePumpFactory factory);
gab 2017/04/19 19:21:47 This test listing paradigm is weird... and this on
32 void RunTest_RecursiveDenial1(MessagePumpFactory factory); 31 void RunTest_RecursiveDenial1(MessagePumpFactory factory);
33 void RunTest_RecursiveDenial3(MessagePumpFactory factory); 32 void RunTest_RecursiveDenial3(MessagePumpFactory factory);
34 void RunTest_RecursiveSupport1(MessagePumpFactory factory); 33 void RunTest_RecursiveSupport1(MessagePumpFactory factory);
35 void RunTest_NonNestableWithNoNesting(MessagePumpFactory factory); 34 void RunTest_NonNestableWithNoNesting(MessagePumpFactory factory);
36 void RunTest_NonNestableInNestedLoop(MessagePumpFactory factory); 35 void RunTest_NonNestableInNestedLoop(MessagePumpFactory factory);
37 void RunTest_QuitNow(MessagePumpFactory factory); 36 void RunTest_QuitNow(MessagePumpFactory factory);
38 void RunTest_RunLoopQuitTop(MessagePumpFactory factory); 37 void RunTest_RunLoopQuitTop(MessagePumpFactory factory);
39 void RunTest_RunLoopQuitNested(MessagePumpFactory factory); 38 void RunTest_RunLoopQuitNested(MessagePumpFactory factory);
40 void RunTest_RunLoopQuitBogus(MessagePumpFactory factory); 39 void RunTest_RunLoopQuitBogus(MessagePumpFactory factory);
41 void RunTest_RunLoopQuitDeep(MessagePumpFactory factory); 40 void RunTest_RunLoopQuitDeep(MessagePumpFactory factory);
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 base::test::RunTest_RunLoopQuitOrderDuring(factory); \ 120 base::test::RunTest_RunLoopQuitOrderDuring(factory); \
122 } \ 121 } \
123 TEST(MessageLoopTestType##id, RunLoopQuitOrderAfter) { \ 122 TEST(MessageLoopTestType##id, RunLoopQuitOrderAfter) { \
124 base::test::RunTest_RunLoopQuitOrderAfter(factory); \ 123 base::test::RunTest_RunLoopQuitOrderAfter(factory); \
125 } \ 124 } \
126 TEST(MessageLoopTestType##id, RecursivePosts) { \ 125 TEST(MessageLoopTestType##id, RecursivePosts) { \
127 base::test::RunTest_RecursivePosts(factory); \ 126 base::test::RunTest_RecursivePosts(factory); \
128 } \ 127 } \
129 128
130 #endif // BASE_MESSAGE_LOOP_MESSAGE_LOOP_TEST_H_ 129 #endif // BASE_MESSAGE_LOOP_MESSAGE_LOOP_TEST_H_
OLDNEW
« no previous file with comments | « base/message_loop/message_loop.cc ('k') | base/message_loop/message_loop_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698