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

Unified Diff: components/offline_pages/offline_page_test_store.h

Issue 2489443002: Move all components/offline_pages/ files into component/offline_pages/core (Closed)
Patch Set: rebase Created 4 years 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 side-by-side diff with in-line comments
Download patch
Index: components/offline_pages/offline_page_test_store.h
diff --git a/components/offline_pages/offline_page_test_store.h b/components/offline_pages/offline_page_test_store.h
deleted file mode 100644
index 2304138ffd2bfaea009a9d466ec62b670b386770..0000000000000000000000000000000000000000
--- a/components/offline_pages/offline_page_test_store.h
+++ /dev/null
@@ -1,77 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef COMPONENTS_OFFLINE_PAGES_OFFLINE_PAGE_TEST_STORE_H_
-#define COMPONENTS_OFFLINE_PAGES_OFFLINE_PAGE_TEST_STORE_H_
-
-#include <stdint.h>
-
-#include <map>
-#include <vector>
-
-#include "base/macros.h"
-#include "base/memory/ref_counted.h"
-#include "base/single_thread_task_runner.h"
-#include "components/offline_pages/offline_page_item.h"
-#include "components/offline_pages/offline_page_metadata_store.h"
-
-namespace offline_pages {
-
-// Offline page store to be used for testing purposes. It stores offline pages
-// in memory. All callbacks are posted immediately through a provided
-// |task_runner|.
-class OfflinePageTestStore : public OfflinePageMetadataStore {
- public:
- enum class TestScenario {
- SUCCESSFUL,
- WRITE_FAILED,
- LOAD_FAILED_RESET_SUCCESS,
- LOAD_FAILED_RESET_FAILED,
- REMOVE_FAILED,
- };
-
- explicit OfflinePageTestStore(
- const scoped_refptr<base::SingleThreadTaskRunner>& task_runner);
- explicit OfflinePageTestStore(const OfflinePageTestStore& other_store);
- ~OfflinePageTestStore() override;
-
- // OfflinePageMetadataStore overrides:
- void Initialize(const InitializeCallback& callback) override;
- void GetOfflinePages(const LoadCallback& callback) override;
- void AddOfflinePage(const OfflinePageItem& offline_page,
- const AddCallback& callback) override;
- void UpdateOfflinePages(const std::vector<OfflinePageItem>& pages,
- const UpdateCallback& callback) override;
- void RemoveOfflinePages(const std::vector<int64_t>& offline_ids,
- const UpdateCallback& callback) override;
- void Reset(const ResetCallback& callback) override;
- StoreState state() const override;
-
- void UpdateLastAccessTime(int64_t offline_id,
- const base::Time& last_access_time);
-
- // Returns all pages, regardless their states.
- std::vector<OfflinePageItem> GetAllPages() const;
-
- // Clear all pages in the store.
- void ClearAllPages();
-
- const OfflinePageItem& last_saved_page() const { return last_saved_page_; }
-
- void set_test_scenario(TestScenario scenario) { scenario_ = scenario; };
-
- private:
- OfflinePageItem last_saved_page_;
- scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
- TestScenario scenario_;
- StoreState store_state_;
-
- std::map<int64_t, OfflinePageItem> offline_pages_;
-
- DISALLOW_ASSIGN(OfflinePageTestStore);
-};
-
-} // namespace offline_pages
-
-#endif // COMPONENTS_OFFLINE_PAGES_OFFLINE_PAGE_TEST_STORE_H_
« no previous file with comments | « components/offline_pages/offline_page_test_archiver.cc ('k') | components/offline_pages/offline_page_test_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698