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

Side by Side Diff: sync/syncable/mutable_entry.h

Issue 272043002: Invoke AttachmentUploader and update AttachmentIds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Android build Created 6 years, 7 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 unified diff | Download patch
« no previous file with comments | « sync/syncable/directory_unittest.cc ('k') | sync/syncable/mutable_entry.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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 SYNC_SYNCABLE_MUTABLE_ENTRY_H_ 5 #ifndef SYNC_SYNCABLE_MUTABLE_ENTRY_H_
6 #define SYNC_SYNCABLE_MUTABLE_ENTRY_H_ 6 #define SYNC_SYNCABLE_MUTABLE_ENTRY_H_
7 7
8 #include "sync/base/sync_export.h" 8 #include "sync/base/sync_export.h"
9 #include "sync/internal_api/public/base/model_type.h" 9 #include "sync/internal_api/public/base/model_type.h"
10 #include "sync/syncable/entry.h" 10 #include "sync/syncable/entry.h"
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 55
56 // Sets the position of this item, and updates the entry kernels of the 56 // Sets the position of this item, and updates the entry kernels of the
57 // adjacent siblings so that list invariants are maintained. Returns false 57 // adjacent siblings so that list invariants are maintained. Returns false
58 // and fails if |predecessor_id| does not identify a sibling. Pass the root 58 // and fails if |predecessor_id| does not identify a sibling. Pass the root
59 // ID to put the node in first position. 59 // ID to put the node in first position.
60 bool PutPredecessor(const Id& predecessor_id); 60 bool PutPredecessor(const Id& predecessor_id);
61 61
62 void PutAttachmentMetadata( 62 void PutAttachmentMetadata(
63 const sync_pb::AttachmentMetadata& attachment_metadata); 63 const sync_pb::AttachmentMetadata& attachment_metadata);
64 64
65 // Update attachment metadata, replace all records matching attachment id's
66 // unique id with updated attachment id that contains server info.
67 // Set is_in_server for corresponding records.
68 void UpdateAttachmentIdWithServerInfo(
69 const sync_pb::AttachmentIdProto& updated_attachment_id);
70
65 private: 71 private:
66 // Kind of redundant. We should reduce the number of pointers 72 // Kind of redundant. We should reduce the number of pointers
67 // floating around if at all possible. Could we store this in Directory? 73 // floating around if at all possible. Could we store this in Directory?
68 // Scope: Set on construction, never changed after that. 74 // Scope: Set on construction, never changed after that.
69 WriteTransaction* const write_transaction_; 75 WriteTransaction* const write_transaction_;
70 76
71 DISALLOW_COPY_AND_ASSIGN(MutableEntry); 77 DISALLOW_COPY_AND_ASSIGN(MutableEntry);
72 }; 78 };
73 79
74 // This function sets only the flags needed to get this entry to sync. 80 // This function sets only the flags needed to get this entry to sync.
75 bool MarkForSyncing(syncable::MutableEntry* e); 81 bool MarkForSyncing(syncable::MutableEntry* e);
76 82
77 } // namespace syncable 83 } // namespace syncable
78 } // namespace syncer 84 } // namespace syncer
79 85
80 #endif // SYNC_SYNCABLE_MUTABLE_ENTRY_H_ 86 #endif // SYNC_SYNCABLE_MUTABLE_ENTRY_H_
OLDNEW
« no previous file with comments | « sync/syncable/directory_unittest.cc ('k') | sync/syncable/mutable_entry.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698