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

Unified Diff: components/webdata/common/web_data_service_base.h

Issue 13839013: Webdata Component tryjobs NOT FOR REVIEW (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: After WD/AF merge Created 7 years, 8 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/webdata/common/web_data_results.h ('k') | components/webdata/common/web_data_service_consumer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/webdata/common/web_data_service_base.h
diff --git a/components/webdata/common/web_data_service_base.h b/components/webdata/common/web_data_service_base.h
index f46fc9172902d1ca20eadc4b99056a2d8d17c35e..dec0a0d1342e419ab76c017a164acb184032e11b 100644
--- a/components/webdata/common/web_data_service_base.h
+++ b/components/webdata/common/web_data_service_base.h
@@ -10,6 +10,7 @@
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/supports_user_data.h"
+#include "components/webdata/common/webdata_export.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/notification_source.h"
#include "sql/init_status.h"
@@ -23,7 +24,7 @@ class Thread;
}
// Base for WebDataService class hierarchy.
-class WebDataServiceBase
+class WEBDATA_EXPORT WebDataServiceBase
: public base::RefCountedThreadSafe<WebDataServiceBase,
content::BrowserThread::DeleteOnUIThread> {
public:
@@ -99,6 +100,9 @@ class WebDataServiceBase
friend struct content::BrowserThread::DeleteOnThread<
content::BrowserThread::UI>;
friend class base::DeleteHelper<WebDataServiceBase>;
+ // We have to friend RCTS<> so WIN shared-lib build is happy (crbug/112250).
+ friend class base::RefCountedThreadSafe<WebDataServiceBase,
+ content::BrowserThread::DeleteOnUIThread>;
ProfileErrorCallback profile_error_callback_;
« no previous file with comments | « components/webdata/common/web_data_results.h ('k') | components/webdata/common/web_data_service_consumer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698