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

Unified Diff: components/sync/syncable/parent_child_index.h

Issue 2240613002: [Sync] Convert sync to a static library. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Try getting rid of sync_core source set. Created 4 years, 4 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
Index: components/sync/syncable/parent_child_index.h
diff --git a/components/sync/syncable/parent_child_index.h b/components/sync/syncable/parent_child_index.h
index 2cff9cb423c29fb42f68ef63da28d39610eb984a..47a1ee50c0dc0d371abc6efe8bbc1ee261260ba9 100644
--- a/components/sync/syncable/parent_child_index.h
+++ b/components/sync/syncable/parent_child_index.h
@@ -12,7 +12,6 @@
#include "base/macros.h"
#include "components/sync/base/model_type.h"
-#include "components/sync/base/sync_export.h"
#include "components/sync/syncable/syncable_id.h"
namespace syncer {
@@ -22,7 +21,7 @@ struct EntryKernel;
class ParentChildIndex;
// A node ordering function.
-struct SYNC_EXPORT ChildComparator {
+struct ChildComparator {
bool operator()(const EntryKernel* a, const EntryKernel* b) const;
};
@@ -32,7 +31,7 @@ typedef std::shared_ptr<OrderedChildSet> OrderedChildSetRef;
// Container that tracks parent-child relationships.
// Provides fast lookup of all items under a given parent.
-class SYNC_EXPORT ParentChildIndex {
+class ParentChildIndex {
public:
ParentChildIndex();
~ParentChildIndex();

Powered by Google App Engine
This is Rietveld 408576698