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

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

Issue 2511973004: components: Cleanup class/struct fwd declarations (Closed)
Patch Set: Rebase on top of current master branch Created 4 years 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
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 COMPONENTS_SYNC_SYNCABLE_MUTABLE_ENTRY_H_ 5 #ifndef COMPONENTS_SYNC_SYNCABLE_MUTABLE_ENTRY_H_
6 #define COMPONENTS_SYNC_SYNCABLE_MUTABLE_ENTRY_H_ 6 #define COMPONENTS_SYNC_SYNCABLE_MUTABLE_ENTRY_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
11 11
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "components/sync/base/model_type.h" 13 #include "components/sync/base/model_type.h"
14 #include "components/sync/syncable/entry.h" 14 #include "components/sync/syncable/entry.h"
15 #include "components/sync/syncable/metahandle_set.h" 15 #include "components/sync/syncable/metahandle_set.h"
16 #include "components/sync/syncable/model_neutral_mutable_entry.h" 16 #include "components/sync/syncable/model_neutral_mutable_entry.h"
17 17
18 namespace syncer { 18 namespace syncer {
19 19
20 class WriteNode;
21
22 namespace syncable { 20 namespace syncable {
23 21
24 enum Create { CREATE }; 22 enum Create { CREATE };
25 23
26 class WriteTransaction; 24 class WriteTransaction;
27 25
28 // A mutable meta entry. Changes get committed to the database when the 26 // A mutable meta entry. Changes get committed to the database when the
29 // WriteTransaction is destroyed. 27 // WriteTransaction is destroyed.
30 class MutableEntry : public ModelNeutralMutableEntry { 28 class MutableEntry : public ModelNeutralMutableEntry {
31 void Init(WriteTransaction* trans, 29 void Init(WriteTransaction* trans,
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 DISALLOW_COPY_AND_ASSIGN(MutableEntry); 85 DISALLOW_COPY_AND_ASSIGN(MutableEntry);
88 }; 86 };
89 87
90 // This function sets only the flags needed to get this entry to sync. 88 // This function sets only the flags needed to get this entry to sync.
91 bool MarkForSyncing(syncable::MutableEntry* e); 89 bool MarkForSyncing(syncable::MutableEntry* e);
92 90
93 } // namespace syncable 91 } // namespace syncable
94 } // namespace syncer 92 } // namespace syncer
95 93
96 #endif // COMPONENTS_SYNC_SYNCABLE_MUTABLE_ENTRY_H_ 94 #endif // COMPONENTS_SYNC_SYNCABLE_MUTABLE_ENTRY_H_
OLDNEW
« no previous file with comments | « components/sync/syncable/directory_backing_store.h ('k') | components/sync/syncable/nigori_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698