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

Side by Side Diff: chrome/browser/automation/automation_tab_helper_unittest.cc

Issue 10500016: Move test_browser_thread.h from content\test to content\public\test. This way we can enforce that i… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 6 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 <map> 5 #include <map>
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "chrome/browser/automation/automation_tab_helper.h" 8 #include "chrome/browser/automation/automation_tab_helper.h"
9 #include "chrome/browser/automation/mock_tab_event_observer.h" 9 #include "chrome/browser/automation/mock_tab_event_observer.h"
10 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" 10 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
11 #include "chrome/browser/ui/tab_contents/test_tab_contents_wrapper.h" 11 #include "chrome/browser/ui/tab_contents/test_tab_contents_wrapper.h"
12 #include "content/test/test_browser_thread.h" 12 #include "content/public/test/test_browser_thread.h"
13 #include "testing/gmock/include/gmock/gmock.h" 13 #include "testing/gmock/include/gmock/gmock.h"
14 #include "testing/gtest/include/gtest/gtest.h" 14 #include "testing/gtest/include/gtest/gtest.h"
15 15
16 using content::BrowserThread; 16 using content::BrowserThread;
17 using testing::_; 17 using testing::_;
18 18
19 class AutomationTabHelperTest : public TabContentsWrapperTestHarness { 19 class AutomationTabHelperTest : public TabContentsWrapperTestHarness {
20 public: 20 public:
21 AutomationTabHelperTest() 21 AutomationTabHelperTest()
22 : TabContentsWrapperTestHarness(), 22 : TabContentsWrapperTestHarness(),
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 204
205 testing::InSequence expect_in_sequence; 205 testing::InSequence expect_in_sequence;
206 EXPECT_CALL(mock_observer_, OnFirstPendingLoad(contents())); 206 EXPECT_CALL(mock_observer_, OnFirstPendingLoad(contents()));
207 EXPECT_CALL(mock_observer_, OnNoMorePendingLoads(contents())); 207 EXPECT_CALL(mock_observer_, OnNoMorePendingLoads(contents()));
208 208
209 StartLoading(); 209 StartLoading();
210 WillPerformClientRedirect(1); 210 WillPerformClientRedirect(1);
211 TabContentsDestroyed(); 211 TabContentsDestroyed();
212 EXPECT_FALSE(tab_helper()->has_pending_loads()); 212 EXPECT_FALSE(tab_helper()->has_pending_loads());
213 } 213 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698