| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef COMPONENTS_ENHANCED_BOOKMARKS_TEST_IMAGE_STORE_H_ | 5 #ifndef COMPONENTS_ENHANCED_BOOKMARKS_TEST_IMAGE_STORE_H_ |
| 6 #define COMPONENTS_ENHANCED_BOOKMARKS_TEST_IMAGE_STORE_H_ | 6 #define COMPONENTS_ENHANCED_BOOKMARKS_TEST_IMAGE_STORE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 10 #include "base/macros.h" |
| 8 #include "components/enhanced_bookmarks/image_store.h" | 11 #include "components/enhanced_bookmarks/image_store.h" |
| 9 | 12 |
| 10 // The TestImageStore is an implementation of ImageStore that keeps all its | 13 // The TestImageStore is an implementation of ImageStore that keeps all its |
| 11 // data in memory. When deallocated all the associations are lost. | 14 // data in memory. When deallocated all the associations are lost. |
| 12 // Used in tests. | 15 // Used in tests. |
| 13 class TestImageStore : public ImageStore { | 16 class TestImageStore : public ImageStore { |
| 14 public: | 17 public: |
| 15 TestImageStore(); | 18 TestImageStore(); |
| 16 bool HasKey(const GURL& page_url) override; | 19 bool HasKey(const GURL& page_url) override; |
| 17 void Insert( | 20 void Insert( |
| 18 const GURL& page_url, | 21 const GURL& page_url, |
| 19 scoped_refptr<enhanced_bookmarks::ImageRecord> image_record) override; | 22 scoped_refptr<enhanced_bookmarks::ImageRecord> image_record) override; |
| 20 void Erase(const GURL& page_url) override; | 23 void Erase(const GURL& page_url) override; |
| 21 scoped_refptr<enhanced_bookmarks::ImageRecord> Get( | 24 scoped_refptr<enhanced_bookmarks::ImageRecord> Get( |
| 22 const GURL& page_url) override; | 25 const GURL& page_url) override; |
| 23 gfx::Size GetSize(const GURL& page_url) override; | 26 gfx::Size GetSize(const GURL& page_url) override; |
| 24 void GetAllPageUrls(std::set<GURL>* urls) override; | 27 void GetAllPageUrls(std::set<GURL>* urls) override; |
| 25 void ClearAll() override; | 28 void ClearAll() override; |
| 26 int64 GetStoreSizeInBytes() override; | 29 int64_t GetStoreSizeInBytes() override; |
| 27 | 30 |
| 28 protected: | 31 protected: |
| 29 ~TestImageStore() override; | 32 ~TestImageStore() override; |
| 30 | 33 |
| 31 private: | 34 private: |
| 32 typedef std::map<const GURL, scoped_refptr<enhanced_bookmarks::ImageRecord>> | 35 typedef std::map<const GURL, scoped_refptr<enhanced_bookmarks::ImageRecord>> |
| 33 ImageMap; | 36 ImageMap; |
| 34 ImageMap store_; | 37 ImageMap store_; |
| 35 | 38 |
| 36 DISALLOW_COPY_AND_ASSIGN(TestImageStore); | 39 DISALLOW_COPY_AND_ASSIGN(TestImageStore); |
| 37 }; | 40 }; |
| 38 | 41 |
| 39 #endif // COMPONENTS_ENHANCED_BOOKMARKS_TEST_IMAGE_STORE_H_ | 42 #endif // COMPONENTS_ENHANCED_BOOKMARKS_TEST_IMAGE_STORE_H_ |
| OLD | NEW |