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

Unified Diff: components/sync/api/attachments/attachment.h

Issue 2401223002: [Sync] Renaming sync/api* to sync/model*. (Closed)
Patch Set: Missed a comment in a DEPS file, and rebasing. Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/sync/api/attachments/README ('k') | components/sync/api/attachments/attachment.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/api/attachments/attachment.h
diff --git a/components/sync/api/attachments/attachment.h b/components/sync/api/attachments/attachment.h
deleted file mode 100644
index 3132c66a77832fea9d69370b517e9b22b3ea2bbe..0000000000000000000000000000000000000000
--- a/components/sync/api/attachments/attachment.h
+++ /dev/null
@@ -1,71 +0,0 @@
-// Copyright 2014 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_SYNC_API_ATTACHMENTS_ATTACHMENT_H_
-#define COMPONENTS_SYNC_API_ATTACHMENTS_ATTACHMENT_H_
-
-#include <stdint.h>
-
-#include <map>
-#include <memory>
-#include <vector>
-
-#include "base/memory/ref_counted.h"
-#include "base/memory/ref_counted_memory.h"
-#include "components/sync/api/attachments/attachment_id.h"
-
-namespace syncer {
-
-// A blob of in-memory data attached to a sync item.
-//
-// While Attachment objects themselves aren't immutable (they are assignable)
-// the data they wrap is immutable.
-//
-// It is cheap to copy Attachments. Feel free to store and return by value.
-class Attachment {
- public:
- Attachment(const Attachment& other);
- ~Attachment();
-
- // Default copy and assignment are welcome.
-
- // Creates an attachment with a unique id and the supplied data.
- //
- // Used when creating a brand new attachment.
- static Attachment Create(const scoped_refptr<base::RefCountedMemory>& data);
-
- // Creates an attachment with the supplied id and data.
- //
- // Used when you want to recreate a specific attachment. E.g. creating a local
- // copy of an attachment that already exists on the sync server.
- static Attachment CreateFromParts(
- const AttachmentId& id,
- const scoped_refptr<base::RefCountedMemory>& data);
-
- // Returns this attachment's id.
- const AttachmentId& GetId() const;
-
- // Returns this attachment's data.
- const scoped_refptr<base::RefCountedMemory>& GetData() const;
-
- // Returns precomputed crc32c hash of data. In ideal case this hash is
- // computed when attachment is first created. It is then passed around through
- // local attachment store and attachment server. Crc is verified when
- // attachment is downloaded from server or loaded from local storage.
- uint32_t GetCrc32c() const;
-
- private:
- AttachmentId id_;
- scoped_refptr<base::RefCountedMemory> data_;
-
- Attachment(const AttachmentId& id,
- const scoped_refptr<base::RefCountedMemory>& data);
-};
-
-typedef std::vector<Attachment> AttachmentList;
-typedef std::map<AttachmentId, Attachment> AttachmentMap;
-
-} // namespace syncer
-
-#endif // COMPONENTS_SYNC_API_ATTACHMENTS_ATTACHMENT_H_
« no previous file with comments | « components/sync/api/attachments/README ('k') | components/sync/api/attachments/attachment.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698