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 "chrome/browser/browsing_data_appcache_helper.h" | 5 #include "chrome/browser/browsing_data/browsing_data_appcache_helper.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
9 #include "base/stl_util.h" | 9 #include "base/stl_util.h" |
10 #include "chrome/test/base/testing_profile.h" | 10 #include "chrome/test/base/testing_profile.h" |
11 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
12 | 12 |
13 namespace { | 13 namespace { |
14 class TestCompletionCallback { | 14 class TestCompletionCallback { |
15 public: | 15 public: |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 | 113 |
114 scoped_refptr<CannedBrowsingDataAppCacheHelper> helper( | 114 scoped_refptr<CannedBrowsingDataAppCacheHelper> helper( |
115 new CannedBrowsingDataAppCacheHelper(&profile)); | 115 new CannedBrowsingDataAppCacheHelper(&profile)); |
116 | 116 |
117 ASSERT_TRUE(helper->empty()); | 117 ASSERT_TRUE(helper->empty()); |
118 helper->AddAppCache(manifest1); | 118 helper->AddAppCache(manifest1); |
119 ASSERT_TRUE(helper->empty()); | 119 ASSERT_TRUE(helper->empty()); |
120 helper->AddAppCache(manifest2); | 120 helper->AddAppCache(manifest2); |
121 ASSERT_TRUE(helper->empty()); | 121 ASSERT_TRUE(helper->empty()); |
122 } | 122 } |
OLD | NEW |