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

Unified Diff: components/sync/core/http_bridge.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/core/delete_journal.h ('k') | components/sync/core/http_bridge_network_resources.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/core/http_bridge.h
diff --git a/components/sync/core/http_bridge.h b/components/sync/core/http_bridge.h
index a4d37e6d21a002ee1513b9f321c94f01642be2d9..88509dea740b16532632d1ef01e873630a2a6daf 100644
--- a/components/sync/core/http_bridge.h
+++ b/components/sync/core/http_bridge.h
@@ -18,7 +18,6 @@
#include "base/threading/thread_checker.h"
#include "base/timer/timer.h"
#include "components/sync/base/cancelation_observer.h"
-#include "components/sync/base/sync_export.h"
#include "components/sync/core/http_post_provider_factory.h"
#include "components/sync/core/http_post_provider_interface.h"
#include "components/sync/core/network_time_update_callback.h"
@@ -46,9 +45,9 @@ class CancelationSignal;
// This is a one-time use bridge. Create one for each request you want to make.
// It is RefCountedThreadSafe because it can PostTask to the io loop, and thus
// needs to stick around across context switches, etc.
-class SYNC_EXPORT HttpBridge : public base::RefCountedThreadSafe<HttpBridge>,
- public HttpPostProviderInterface,
- public net::URLFetcherDelegate {
+class HttpBridge : public base::RefCountedThreadSafe<HttpBridge>,
+ public HttpPostProviderInterface,
+ public net::URLFetcherDelegate {
public:
HttpBridge(const std::string& user_agent,
const scoped_refptr<net::URLRequestContextGetter>& context,
@@ -187,8 +186,8 @@ class SYNC_EXPORT HttpBridge : public base::RefCountedThreadSafe<HttpBridge>,
DISALLOW_COPY_AND_ASSIGN(HttpBridge);
};
-class SYNC_EXPORT HttpBridgeFactory : public HttpPostProviderFactory,
- public CancelationObserver {
+class HttpBridgeFactory : public HttpPostProviderFactory,
+ public CancelationObserver {
public:
HttpBridgeFactory(
const scoped_refptr<net::URLRequestContextGetter>&
« no previous file with comments | « components/sync/core/delete_journal.h ('k') | components/sync/core/http_bridge_network_resources.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698