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

Side by Side Diff: chrome/browser/page_cycler/page_cycler_unittest.cc

Issue 19052005: Move PathIsWritable, DirectoryExists, ContentsEqual, and TextContentsEqual to the base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 "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
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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/media_galleries/fileapi/picasa/picasa_finder.cc ('k') | chrome/browser/performance_monitor/database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698