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

Side by Side Diff: chrome/browser/browsing_data_database_helper_browsertest.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/bind.h" 5 #include "base/bind.h"
6 #include "base/bind_helpers.h" 6 #include "base/bind_helpers.h"
7 #include "base/file_util.h" 7 #include "base/file_util.h"
8 #include "base/utf_string_conversions.h" 8 #include "base/utf_string_conversions.h"
9 #include "chrome/browser/browsing_data_database_helper.h" 9 #include "chrome/browser/browsing_data_database_helper.h"
10 #include "chrome/browser/browsing_data_helper_browsertest.h" 10 #include "chrome/browser/browsing_data_helper_browsertest.h"
11 #include "chrome/browser/profiles/profile.h" 11 #include "chrome/browser/profiles/profile.h"
12 #include "chrome/browser/ui/browser.h" 12 #include "chrome/browser/ui/browser.h"
13 #include "chrome/test/base/in_process_browser_test.h" 13 #include "chrome/test/base/in_process_browser_test.h"
14 #include "chrome/test/base/ui_test_utils.h" 14 #include "chrome/test/base/ui_test_utils.h"
15 #include "content/test/test_browser_thread.h" 15 #include "content/public/test/test_browser_thread.h"
16 16
17 using content::BrowserContext; 17 using content::BrowserContext;
18 using content::BrowserThread; 18 using content::BrowserThread;
19 19
20 namespace { 20 namespace {
21 typedef BrowsingDataHelperCallback<BrowsingDataDatabaseHelper::DatabaseInfo> 21 typedef BrowsingDataHelperCallback<BrowsingDataDatabaseHelper::DatabaseInfo>
22 TestCompletionCallback; 22 TestCompletionCallback;
23 23
24 const char kTestIdentifier1[] = "http_www.google.com_0"; 24 const char kTestIdentifier1[] = "http_www.google.com_0";
25 25
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 base::Unretained(&callback))); 142 base::Unretained(&callback)));
143 143
144 std::list<BrowsingDataDatabaseHelper::DatabaseInfo> result = 144 std::list<BrowsingDataDatabaseHelper::DatabaseInfo> result =
145 callback.result(); 145 callback.result();
146 146
147 ASSERT_EQ(1u, result.size()); 147 ASSERT_EQ(1u, result.size());
148 EXPECT_STREQ(origin_str, result.begin()->origin_identifier.c_str()); 148 EXPECT_STREQ(origin_str, result.begin()->origin_identifier.c_str());
149 EXPECT_STREQ(db, result.begin()->database_name.c_str()); 149 EXPECT_STREQ(db, result.begin()->database_name.c_str());
150 } 150 }
151 } // namespace 151 } // namespace
OLDNEW
« no previous file with comments | « chrome/browser/browsing_data_cookie_helper_unittest.cc ('k') | chrome/browser/browsing_data_database_helper_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698