| Index: storage/browser/quota/storage_observer.h
|
| diff --git a/webkit/browser/quota/storage_observer.h b/storage/browser/quota/storage_observer.h
|
| similarity index 87%
|
| rename from webkit/browser/quota/storage_observer.h
|
| rename to storage/browser/quota/storage_observer.h
|
| index bc6389d8b50fe5a3a0393753a08bfd3aaae90bd4..6504eb5c26ebc5f6915d531b5d9ebfb1143f27fc 100644
|
| --- a/webkit/browser/quota/storage_observer.h
|
| +++ b/storage/browser/quota/storage_observer.h
|
| @@ -8,16 +8,16 @@
|
| #include "base/basictypes.h"
|
| #include "base/time/time.h"
|
| #include "url/gurl.h"
|
| -#include "webkit/browser/quota/quota_client.h"
|
| -#include "webkit/common/quota/quota_types.h"
|
| +#include "storage/browser/quota/quota_client.h"
|
| +#include "storage/common/quota/quota_types.h"
|
|
|
| namespace quota {
|
|
|
| // This interface is implemented by observers that wish to monitor storage
|
| // events, such as changes in quota or usage.
|
| -class WEBKIT_STORAGE_BROWSER_EXPORT StorageObserver {
|
| +class STORAGE_EXPORT StorageObserver {
|
| public:
|
| - struct WEBKIT_STORAGE_BROWSER_EXPORT Filter {
|
| + struct STORAGE_EXPORT Filter {
|
| // The storage type to monitor. This must not be kStorageTypeUnknown or
|
| // kStorageTypeQuotaNotManaged.
|
| StorageType storage_type;
|
| @@ -30,7 +30,7 @@ class WEBKIT_STORAGE_BROWSER_EXPORT StorageObserver {
|
| bool operator==(const Filter& other) const;
|
| };
|
|
|
| - struct WEBKIT_STORAGE_BROWSER_EXPORT MonitorParams {
|
| + struct STORAGE_EXPORT MonitorParams {
|
| // Storage type and origin to monitor.
|
| Filter filter;
|
|
|
| @@ -52,7 +52,7 @@ class WEBKIT_STORAGE_BROWSER_EXPORT StorageObserver {
|
| bool get_initial_state);
|
| };
|
|
|
| - struct WEBKIT_STORAGE_BROWSER_EXPORT Event {
|
| + struct STORAGE_EXPORT Event {
|
| // The storage type and origin monitored.
|
| Filter filter;
|
|
|
|
|