| OLD | NEW |
| 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 "base/file_util.h" | 5 #include "base/file_util.h" |
| 6 #include "base/path_service.h" | 6 #include "base/path_service.h" |
| 7 #include "base/prefs/testing_pref_service.h" | 7 #include "base/prefs/testing_pref_service.h" |
| 8 #include "base/strings/string_split.h" | 8 #include "base/strings/string_split.h" |
| 9 #include "base/strings/string_util.h" | 9 #include "base/strings/string_util.h" |
| 10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "content/public/test/test_browser_thread.h" | 22 #include "content/public/test/test_browser_thread.h" |
| 23 #include "net/base/net_errors.h" | 23 #include "net/base/net_errors.h" |
| 24 #include "testing/gmock/include/gmock/gmock.h" | 24 #include "testing/gmock/include/gmock/gmock.h" |
| 25 #include "testing/gtest/include/gtest/gtest.h" | 25 #include "testing/gtest/include/gtest/gtest.h" |
| 26 | 26 |
| 27 using ::testing::_; | 27 using ::testing::_; |
| 28 using ::testing::Invoke; | 28 using ::testing::Invoke; |
| 29 using content::RenderViewHost; | 29 using content::RenderViewHost; |
| 30 using content::TestBrowserThread; | 30 using content::TestBrowserThread; |
| 31 using content::WebContentsObserver; | 31 using content::WebContentsObserver; |
| 32 using file_util::ContentsEqual; | 32 using base::ContentsEqual; |
| 33 using base::PathExists; | 33 using base::PathExists; |
| 34 | 34 |
| 35 namespace { | 35 namespace { |
| 36 const int kFrameID = 1; | 36 const int kFrameID = 1; |
| 37 const bool kIsMainFrame = true; | 37 const bool kIsMainFrame = true; |
| 38 const GURL kAboutURL = GURL(content::kAboutBlankURL); | 38 const GURL kAboutURL = GURL(content::kAboutBlankURL); |
| 39 } // namespace | 39 } // namespace |
| 40 | 40 |
| 41 class MockPageCycler : public PageCycler { | 41 class MockPageCycler : public PageCycler { |
| 42 public: | 42 public: |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 .WillRepeatedly(Invoke(page_cycler(), | 346 .WillRepeatedly(Invoke(page_cycler(), |
| 347 &MockPageCycler::PageCyclerDidFinishLoad)); | 347 &MockPageCycler::PageCyclerDidFinishLoad)); |
| 348 | 348 |
| 349 for (int i = 0; i < kNumLoads; ++i) | 349 for (int i = 0; i < kNumLoads; ++i) |
| 350 FinishLoad(); | 350 FinishLoad(); |
| 351 | 351 |
| 352 PumpLoop(); | 352 PumpLoop(); |
| 353 EXPECT_FALSE(PathExists(errors_file())); | 353 EXPECT_FALSE(PathExists(errors_file())); |
| 354 ASSERT_TRUE(PathExists(stats_file())); | 354 ASSERT_TRUE(PathExists(stats_file())); |
| 355 } | 355 } |
| OLD | NEW |