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

Unified Diff: webkit/browser/quota/quota_manager.h

Issue 16701004: Fix webkit_storage exports definitions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 6 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 | « webkit/browser/quota/quota_database.h ('k') | webkit/browser/quota/quota_task.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « webkit/browser/quota/quota_database.h ('k') | webkit/browser/quota/quota_task.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698