| Index: webkit/browser/quota/quota_manager.h
|
| diff --git a/webkit/browser/quota/quota_manager.h b/webkit/browser/quota/quota_manager.h
|
| index 9496b97a9f3a6dc6d1abd598686f6da8f8a35354..e607ff24e7e3688b25bd8a4adbffdd5b9804706f 100644
|
| --- a/webkit/browser/quota/quota_manager.h
|
| +++ b/webkit/browser/quota/quota_manager.h
|
| @@ -25,7 +25,7 @@
|
| #include "webkit/browser/quota/quota_database.h"
|
| #include "webkit/browser/quota/quota_task.h"
|
| #include "webkit/browser/quota/special_storage_policy.h"
|
| -#include "webkit/storage/webkit_storage_export.h"
|
| +#include "webkit/browser/webkit_storage_browser_export.h"
|
|
|
| namespace base {
|
| class FilePath;
|
| @@ -47,7 +47,7 @@ class UsageTracker;
|
|
|
| struct QuotaManagerDeleter;
|
|
|
| -struct WEBKIT_STORAGE_EXPORT UsageAndQuota {
|
| +struct WEBKIT_STORAGE_BROWSER_EXPORT UsageAndQuota {
|
| int64 usage;
|
| int64 global_limited_usage;
|
| int64 quota;
|
| @@ -61,7 +61,7 @@ struct WEBKIT_STORAGE_EXPORT UsageAndQuota {
|
| };
|
|
|
| // An interface called by QuotaTemporaryStorageEvictor.
|
| -class WEBKIT_STORAGE_EXPORT QuotaEvictionHandler {
|
| +class WEBKIT_STORAGE_BROWSER_EXPORT QuotaEvictionHandler {
|
| public:
|
| typedef base::Callback<void(const GURL&)> GetLRUOriginCallback;
|
| typedef StatusCallback EvictOriginDataCallback;
|
| @@ -100,7 +100,7 @@ struct UsageInfo {
|
| // The quota manager class. This class is instantiated per profile and
|
| // held by the profile. With the exception of the constructor and the
|
| // proxy() method, all methods should only be called on the IO thread.
|
| -class WEBKIT_STORAGE_EXPORT QuotaManager
|
| +class WEBKIT_STORAGE_BROWSER_EXPORT QuotaManager
|
| : public QuotaTaskObserver,
|
| public QuotaEvictionHandler,
|
| public base::RefCountedThreadSafe<QuotaManager, QuotaManagerDeleter> {
|
| @@ -429,7 +429,7 @@ struct QuotaManagerDeleter {
|
| };
|
|
|
| // The proxy may be called and finally released on any thread.
|
| -class WEBKIT_STORAGE_EXPORT QuotaManagerProxy
|
| +class WEBKIT_STORAGE_BROWSER_EXPORT QuotaManagerProxy
|
| : public base::RefCountedThreadSafe<QuotaManagerProxy> {
|
| public:
|
| virtual void RegisterClient(QuotaClient* client);
|
|
|