Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / components / enhanced_bookmarks / test_image_store.h
index 5958ed2..5acef16 100644 (file)
 class TestImageStore : public ImageStore {
  public:
   TestImageStore();
-  virtual bool HasKey(const GURL& page_url) OVERRIDE;
-  virtual void Insert(const GURL& page_url,
-                      const GURL& image_url,
-                      const gfx::Image& image) OVERRIDE;
-  virtual void Erase(const GURL& page_url) OVERRIDE;
-  virtual std::pair<gfx::Image, GURL> Get(const GURL& page_url) OVERRIDE;
-  virtual gfx::Size GetSize(const GURL& page_url) OVERRIDE;
-  virtual void GetAllPageUrls(std::set<GURL>* urls) OVERRIDE;
-  virtual void ClearAll() OVERRIDE;
-  virtual int64 GetStoreSizeInBytes() OVERRIDE;
+  bool HasKey(const GURL& page_url) override;
+  void Insert(const GURL& page_url,
+              const GURL& image_url,
+              const gfx::Image& image) override;
+  void Erase(const GURL& page_url) override;
+  std::pair<gfx::Image, GURL> Get(const GURL& page_url) override;
+  gfx::Size GetSize(const GURL& page_url) override;
+  void GetAllPageUrls(std::set<GURL>* urls) override;
+  void ClearAll() override;
+  int64 GetStoreSizeInBytes() override;
 
  protected:
-  virtual ~TestImageStore();
+  ~TestImageStore() override;
 
  private:
   typedef std::map<const GURL, std::pair<gfx::Image, const GURL> > ImageMap;