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

Side by Side Diff: chrome/browser/browsing_data/browsing_data_indexed_db_helper_unittest.cc

Issue 1117583003: [chrome/browser/browsing_data] Replace MessageLoopProxy usage with ThreadTaskRunnerHandle (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
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 "chrome/browser/browsing_data/browsing_data_indexed_db_helper.h" 5 #include "chrome/browser/browsing_data/browsing_data_indexed_db_helper.h"
6 6
7 #include "base/message_loop/message_loop_proxy.h" 7 #include "base/message_loop/message_loop_proxy.h"
Bernhard Bauer 2015/04/29 09:25:02 This include is not necessary anymore.
Pranay 2015/05/04 03:28:21 Done.
Pranay 2015/05/04 03:30:31 Done.
8 #include "base/strings/utf_string_conversions.h" 8 #include "base/strings/utf_string_conversions.h"
9 #include "base/thread_task_runner_handle.h"
9 #include "chrome/test/base/testing_profile.h" 10 #include "chrome/test/base/testing_profile.h"
10 #include "content/public/browser/browser_context.h" 11 #include "content/public/browser/browser_context.h"
11 #include "content/public/browser/storage_partition.h" 12 #include "content/public/browser/storage_partition.h"
12 #include "content/public/test/test_browser_thread_bundle.h" 13 #include "content/public/test/test_browser_thread_bundle.h"
13 #include "testing/gtest/include/gtest/gtest.h" 14 #include "testing/gtest/include/gtest/gtest.h"
14 15
15 namespace { 16 namespace {
16 17
17 class CannedBrowsingDataIndexedDBHelperTest : public testing::Test { 18 class CannedBrowsingDataIndexedDBHelperTest : public testing::Test {
18 public: 19 public:
19 void SetUp() override { 20 void SetUp() override {
20 IndexedDBContext()->SetTaskRunnerForTesting( 21 IndexedDBContext()->SetTaskRunnerForTesting(
21 base::MessageLoopProxy::current().get()); 22 base::ThreadTaskRunnerHandle::Get().get());
22 } 23 }
23 24
24 content::IndexedDBContext* IndexedDBContext() { 25 content::IndexedDBContext* IndexedDBContext() {
25 return content::BrowserContext::GetDefaultStoragePartition(&profile_)-> 26 return content::BrowserContext::GetDefaultStoragePartition(&profile_)->
26 GetIndexedDBContext(); 27 GetIndexedDBContext();
27 } 28 }
28 29
29 private: 30 private:
30 content::TestBrowserThreadBundle thread_bundle_; 31 content::TestBrowserThreadBundle thread_bundle_;
31 TestingProfile profile_; 32 TestingProfile profile_;
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 new CannedBrowsingDataIndexedDBHelper(IndexedDBContext())); 75 new CannedBrowsingDataIndexedDBHelper(IndexedDBContext()));
75 76
76 ASSERT_TRUE(helper->empty()); 77 ASSERT_TRUE(helper->empty());
77 helper->AddIndexedDB(origin1, description); 78 helper->AddIndexedDB(origin1, description);
78 ASSERT_TRUE(helper->empty()); 79 ASSERT_TRUE(helper->empty());
79 helper->AddIndexedDB(origin2, description); 80 helper->AddIndexedDB(origin2, description);
80 ASSERT_TRUE(helper->empty()); 81 ASSERT_TRUE(helper->empty());
81 } 82 }
82 83
83 } // namespace 84 } // namespace
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698