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

Side by Side Diff: chrome_frame/external_tab_test.cc

Issue 5977010: Move CancellationFlag and WaitableEvent to the synchronization subdirectory.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « chrome_frame/external_tab.cc ('k') | chrome_frame/test/proxy_factory_mock.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 (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #include "chrome_frame/external_tab.h" 5 #include "chrome_frame/external_tab.h"
6 #include "base/task.h" 6 #include "base/task.h"
7 #include "base/threading/thread.h" 7 #include "base/threading/thread.h"
8 #include "base/tracked.h" 8 #include "base/tracked.h"
9 9
10 // #include "base/waitable_event.h" 10 // #include "base/synchronization/waitable_event.h"
11 11
12 #include "chrome/common/automation_messages.h" 12 #include "chrome/common/automation_messages.h"
13 #include "chrome_frame/navigation_constraints.h" 13 #include "chrome_frame/navigation_constraints.h"
14 #include "chrome_frame/test/chrome_frame_test_utils.h" 14 #include "chrome_frame/test/chrome_frame_test_utils.h"
15 #include "testing/gtest/include/gtest/gtest.h" 15 #include "testing/gtest/include/gtest/gtest.h"
16 #include "testing/gmock/include/gmock/gmock.h" 16 #include "testing/gmock/include/gmock/gmock.h"
17 #include "testing/gmock_mutant.h" 17 #include "testing/gmock_mutant.h"
18 18
19 19
20 20
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 CreateTabParams tab_params; 179 CreateTabParams tab_params;
180 tab_params.is_incognito = true; 180 tab_params.is_incognito = true;
181 tab_params.is_widget_mode = false; 181 tab_params.is_widget_mode = false;
182 tab_params.url = GURL("http://Xanadu.org"); 182 tab_params.url = GURL("http://Xanadu.org");
183 183
184 tab->CreateTab(tab_params, &ui_delegate); 184 tab->CreateTab(tab_params, &ui_delegate);
185 loop.RunFor(5); 185 loop.RunFor(5);
186 EXPECT_FALSE(loop.WasTimedOut()); 186 EXPECT_FALSE(loop.WasTimedOut());
187 tab.reset(); 187 tab.reset();
188 } 188 }
OLDNEW
« no previous file with comments | « chrome_frame/external_tab.cc ('k') | chrome_frame/test/proxy_factory_mock.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698