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

Side by Side Diff: components/offline_pages/core/offline_page_metadata_store_unittest.cc

Issue 2819983003: [Offline Pages] Renaming metadata store test file. (Closed)
Patch Set: Created 3 years, 8 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "components/offline_pages/core/offline_page_metadata_store.h" 5 #include "components/offline_pages/core/offline_page_metadata_store.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include <memory> 9 #include <memory>
10 10
(...skipping 957 matching lines...) Expand 10 before | Expand all | Expand 10 after
968 std::unique_ptr<OfflinePageMetadataStore> store(BuildStore()); 968 std::unique_ptr<OfflinePageMetadataStore> store(BuildStore());
969 969
970 store->Reset(base::Bind(&OfflinePageMetadataStoreTest::ResetCallback, 970 store->Reset(base::Bind(&OfflinePageMetadataStoreTest::ResetCallback,
971 base::Unretained(this))); 971 base::Unretained(this)));
972 PumpLoop(); 972 PumpLoop();
973 EXPECT_EQ(STATUS_TRUE, last_status_); 973 EXPECT_EQ(STATUS_TRUE, last_status_);
974 } 974 }
975 975
976 } // namespace 976 } // namespace
977 } // namespace offline_pages 977 } // namespace offline_pages
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698