| OLD | NEW |
| 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 "chrome/browser/browsing_data_local_storage_helper.h" | 5 #include "chrome/browser/browsing_data_local_storage_helper.h" |
| 6 | 6 |
| 7 #include "chrome/test/base/testing_browser_process_test.h" | |
| 8 #include "chrome/test/base/testing_profile.h" | 7 #include "chrome/test/base/testing_profile.h" |
| 9 #include "testing/gtest/include/gtest/gtest.h" | 8 #include "testing/gtest/include/gtest/gtest.h" |
| 10 | 9 |
| 11 namespace { | 10 namespace { |
| 12 | 11 |
| 13 typedef TestingBrowserProcessTest CannedBrowsingDataLocalStorageTest; | 12 typedef testing::Test CannedBrowsingDataLocalStorageTest; |
| 14 | 13 |
| 15 TEST_F(CannedBrowsingDataLocalStorageTest, Empty) { | 14 TEST_F(CannedBrowsingDataLocalStorageTest, Empty) { |
| 16 TestingProfile profile; | 15 TestingProfile profile; |
| 17 | 16 |
| 18 const GURL origin("http://host1:1/"); | 17 const GURL origin("http://host1:1/"); |
| 19 | 18 |
| 20 scoped_refptr<CannedBrowsingDataLocalStorageHelper> helper( | 19 scoped_refptr<CannedBrowsingDataLocalStorageHelper> helper( |
| 21 new CannedBrowsingDataLocalStorageHelper(&profile)); | 20 new CannedBrowsingDataLocalStorageHelper(&profile)); |
| 22 | 21 |
| 23 ASSERT_TRUE(helper->empty()); | 22 ASSERT_TRUE(helper->empty()); |
| 24 helper->AddLocalStorage(origin); | 23 helper->AddLocalStorage(origin); |
| 25 ASSERT_FALSE(helper->empty()); | 24 ASSERT_FALSE(helper->empty()); |
| 26 helper->Reset(); | 25 helper->Reset(); |
| 27 ASSERT_TRUE(helper->empty()); | 26 ASSERT_TRUE(helper->empty()); |
| 28 } | 27 } |
| 29 | 28 |
| 30 } // namespace | 29 } // namespace |
| OLD | NEW |