summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordongseong.hwang@intel.com <dongseong.hwang@intel.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-03 19:27:59 +0000
committerdongseong.hwang@intel.com <dongseong.hwang@intel.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-03 19:27:59 +0000
commit2e2573d6449dbf54eeca2185e1f1d24f6d227d78 (patch)
treecd081f938649522da7e2ef12c5010a7ebb1206bc
parentd2c1a97bc0437c4ace8eaed41645f82762725dc6 (diff)
downloadchromium_src-2e2573d6449dbf54eeca2185e1f1d24f6d227d78.zip
chromium_src-2e2573d6449dbf54eeca2185e1f1d24f6d227d78.tar.gz
chromium_src-2e2573d6449dbf54eeca2185e1f1d24f6d227d78.tar.bz2
Component build fix: indexed_db_quota_client_unittest.cc
Export GetOriginUsage(...) and DeleteOriginData(...) in IndexedDBQuotaClient to fix undefined reference build error. BUG=N/A Review URL: https://codereview.chromium.org/185413011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@254528 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--content/browser/indexed_db/indexed_db_quota_client.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/content/browser/indexed_db/indexed_db_quota_client.h b/content/browser/indexed_db/indexed_db_quota_client.h
index 3c48c27..6dcdfd5 100644
--- a/content/browser/indexed_db/indexed_db_quota_client.h
+++ b/content/browser/indexed_db/indexed_db_quota_client.h
@@ -32,17 +32,19 @@ class IndexedDBQuotaClient : public quota::QuotaClient,
// QuotaClient method overrides
virtual ID id() const OVERRIDE;
virtual void OnQuotaManagerDestroyed() OVERRIDE;
- virtual void GetOriginUsage(const GURL& origin_url,
- quota::StorageType type,
- const GetUsageCallback& callback) OVERRIDE;
+ CONTENT_EXPORT virtual void GetOriginUsage(const GURL& origin_url,
+ quota::StorageType type,
+ const GetUsageCallback& callback)
+ OVERRIDE;
virtual void GetOriginsForType(quota::StorageType type,
const GetOriginsCallback& callback) OVERRIDE;
virtual void GetOriginsForHost(quota::StorageType type,
const std::string& host,
const GetOriginsCallback& callback) OVERRIDE;
- virtual void DeleteOriginData(const GURL& origin,
- quota::StorageType type,
- const DeletionCallback& callback) OVERRIDE;
+ CONTENT_EXPORT virtual void DeleteOriginData(const GURL& origin,
+ quota::StorageType type,
+ const DeletionCallback& callback)
+ OVERRIDE;
virtual bool DoesSupport(quota::StorageType type) const OVERRIDE;
private: