Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / sync / api / attachments / fake_attachment_store.h
index 35fad17..9ac7006 100644 (file)
@@ -36,8 +36,6 @@ class SYNC_EXPORT FakeAttachmentStore : public AttachmentStore {
   explicit FakeAttachmentStore(
       const scoped_refptr<base::SequencedTaskRunner>& backend_task_runner);
 
-  virtual ~FakeAttachmentStore();
-
   // AttachmentStore implementation.
   virtual void Read(const AttachmentIdList& id,
                     const ReadCallback& callback) OVERRIDE;
@@ -49,6 +47,8 @@ class SYNC_EXPORT FakeAttachmentStore : public AttachmentStore {
  private:
   class Backend;
 
+  virtual ~FakeAttachmentStore();
+
   scoped_refptr<Backend> backend_;
   scoped_refptr<base::SequencedTaskRunner> backend_task_runner_;