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

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

Issue 1891233006: mus: Fix handled status in UI event ack, add MessageLoop::NestingObserver (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@eventresult
Patch Set: review comments 3 Created 4 years, 7 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);
31 void RunTest_RecursiveDenial1(MessagePumpFactory factory); 32 void RunTest_RecursiveDenial1(MessagePumpFactory factory);
32 void RunTest_RecursiveDenial3(MessagePumpFactory factory); 33 void RunTest_RecursiveDenial3(MessagePumpFactory factory);
33 void RunTest_RecursiveSupport1(MessagePumpFactory factory); 34 void RunTest_RecursiveSupport1(MessagePumpFactory factory);
34 void RunTest_NonNestableWithNoNesting(MessagePumpFactory factory); 35 void RunTest_NonNestableWithNoNesting(MessagePumpFactory factory);
35 void RunTest_NonNestableInNestedLoop(MessagePumpFactory factory, 36 void RunTest_NonNestableInNestedLoop(MessagePumpFactory factory,
36 bool use_delayed); 37 bool use_delayed);
37 void RunTest_QuitNow(MessagePumpFactory factory); 38 void RunTest_QuitNow(MessagePumpFactory factory);
38 void RunTest_RunLoopQuitTop(MessagePumpFactory factory); 39 void RunTest_RunLoopQuitTop(MessagePumpFactory factory);
39 void RunTest_RunLoopQuitNested(MessagePumpFactory factory); 40 void RunTest_RunLoopQuitNested(MessagePumpFactory factory);
40 void RunTest_RunLoopQuitBogus(MessagePumpFactory factory); 41 void RunTest_RunLoopQuitBogus(MessagePumpFactory factory);
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 base::test::RunTest_RunLoopQuitOrderDuring(factory); \ 125 base::test::RunTest_RunLoopQuitOrderDuring(factory); \
125 } \ 126 } \
126 TEST(MessageLoopTestType##id, RunLoopQuitOrderAfter) { \ 127 TEST(MessageLoopTestType##id, RunLoopQuitOrderAfter) { \
127 base::test::RunTest_RunLoopQuitOrderAfter(factory); \ 128 base::test::RunTest_RunLoopQuitOrderAfter(factory); \
128 } \ 129 } \
129 TEST(MessageLoopTestType##id, RecursivePosts) { \ 130 TEST(MessageLoopTestType##id, RecursivePosts) { \
130 base::test::RunTest_RecursivePosts(factory); \ 131 base::test::RunTest_RecursivePosts(factory); \
131 } \ 132 } \
132 133
133 #endif // BASE_MESSAGE_LOOP_MESSAGE_LOOP_TEST_H_ 134 #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