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

Unified Diff: components/sync/engine_impl/get_updates_delegate.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
« no previous file with comments | « components/sync/engine_impl/get_commit_ids.h ('k') | components/sync/engine_impl/get_updates_processor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/engine_impl/get_updates_delegate.h
diff --git a/components/sync/engine_impl/get_updates_delegate.h b/components/sync/engine_impl/get_updates_delegate.h
index 73ad8086706f283531486ef6f085b001c9b6a2d6..376b1e12d488e59e24b014b77ed66ed0a53c7de1 100644
--- a/components/sync/engine_impl/get_updates_delegate.h
+++ b/components/sync/engine_impl/get_updates_delegate.h
@@ -22,7 +22,7 @@ class GetUpdatesProcessor;
// GetUpdate type (normal, configuration, poll). The GetUpdatesProcessor is
// given an appropriate GetUpdatesDelegate to handle type specific functionality
// on construction.
-class SYNC_EXPORT GetUpdatesDelegate {
+class GetUpdatesDelegate {
public:
GetUpdatesDelegate();
virtual ~GetUpdatesDelegate() = 0;
@@ -42,7 +42,7 @@ class SYNC_EXPORT GetUpdatesDelegate {
};
// Functionality specific to the normal GetUpdate request.
-class SYNC_EXPORT NormalGetUpdatesDelegate : public GetUpdatesDelegate {
+class NormalGetUpdatesDelegate : public GetUpdatesDelegate {
public:
explicit NormalGetUpdatesDelegate(
const sessions::NudgeTracker& nudge_tracker);
@@ -68,7 +68,7 @@ class SYNC_EXPORT NormalGetUpdatesDelegate : public GetUpdatesDelegate {
};
// Functionality specific to the configure GetUpdate request.
-class SYNC_EXPORT ConfigureGetUpdatesDelegate : public GetUpdatesDelegate {
+class ConfigureGetUpdatesDelegate : public GetUpdatesDelegate {
public:
ConfigureGetUpdatesDelegate(
sync_pb::GetUpdatesCallerInfo::GetUpdatesSource source);
@@ -100,7 +100,7 @@ class SYNC_EXPORT ConfigureGetUpdatesDelegate : public GetUpdatesDelegate {
};
// Functionality specific to the poll GetUpdate request.
-class SYNC_EXPORT PollGetUpdatesDelegate : public GetUpdatesDelegate {
+class PollGetUpdatesDelegate : public GetUpdatesDelegate {
public:
PollGetUpdatesDelegate();
~PollGetUpdatesDelegate() override;
« no previous file with comments | « components/sync/engine_impl/get_commit_ids.h ('k') | components/sync/engine_impl/get_updates_processor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698