| Index: webkit/browser/database/database_tracker.h
|
| diff --git a/webkit/browser/database/database_tracker.h b/webkit/browser/database/database_tracker.h
|
| index 4a07c394af106afb6c2e94e85dcac14c0a472e36..0e033ab1cf7ef6c5570e3a68350a162fe4ba4110 100644
|
| --- a/webkit/browser/database/database_tracker.h
|
| +++ b/webkit/browser/database/database_tracker.h
|
| @@ -19,8 +19,8 @@
|
| #include "base/strings/string_util.h"
|
| #include "base/time.h"
|
| #include "net/base/completion_callback.h"
|
| +#include "webkit/browser/webkit_storage_browser_export.h"
|
| #include "webkit/common/database/database_connections.h"
|
| -#include "webkit/storage/webkit_storage_export.h"
|
|
|
| namespace base {
|
| class MessageLoopProxy;
|
| @@ -38,15 +38,15 @@ class SpecialStoragePolicy;
|
|
|
| namespace webkit_database {
|
|
|
| -WEBKIT_STORAGE_EXPORT extern const base::FilePath::CharType
|
| +WEBKIT_STORAGE_BROWSER_EXPORT extern const base::FilePath::CharType
|
| kDatabaseDirectoryName[];
|
| -WEBKIT_STORAGE_EXPORT extern const base::FilePath::CharType
|
| +WEBKIT_STORAGE_BROWSER_EXPORT extern const base::FilePath::CharType
|
| kTrackerDatabaseFileName[];
|
|
|
| class DatabasesTable;
|
|
|
| // This class is used to store information about all databases in an origin.
|
| -class WEBKIT_STORAGE_EXPORT OriginInfo {
|
| +class WEBKIT_STORAGE_BROWSER_EXPORT OriginInfo {
|
| public:
|
| OriginInfo();
|
| OriginInfo(const OriginInfo& origin_info);
|
| @@ -80,7 +80,7 @@ class WEBKIT_STORAGE_EXPORT OriginInfo {
|
| // the disk. Therefore, in a multi-threaded application, all methods of this
|
| // class should be called on the thread dedicated to file operations (file
|
| // thread in the browser process, for example), if such a thread exists.
|
| -class WEBKIT_STORAGE_EXPORT DatabaseTracker
|
| +class WEBKIT_STORAGE_BROWSER_EXPORT DatabaseTracker
|
| : public base::RefCountedThreadSafe<DatabaseTracker> {
|
| public:
|
| class Observer {
|
|
|