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

Unified Diff: webkit/database/database_tracker.h

Issue 11274003: webkit: Merge 'database' and 'quota' to 'webkit_storage' (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More EXPORT for Win Created 8 years, 2 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/database/database_quota_client.h ('k') | webkit/database/database_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/database/database_tracker.h
diff --git a/webkit/database/database_tracker.h b/webkit/database/database_tracker.h
index 9c1ef048d45149e4ce14141c8813faf691e9231f..df3079a140f217371c0c588eb5a1b3b042e3b658 100644
--- a/webkit/database/database_tracker.h
+++ b/webkit/database/database_tracker.h
@@ -20,6 +20,7 @@
#include "base/time.h"
#include "net/base/completion_callback.h"
#include "webkit/database/database_connections.h"
+#include "webkit/storage/webkit_storage_export.h"
namespace base {
class MessageLoopProxy;
@@ -37,13 +38,14 @@ class SpecialStoragePolicy;
namespace webkit_database {
-extern const FilePath::CharType kDatabaseDirectoryName[];
-extern const FilePath::CharType kTrackerDatabaseFileName[];
+WEBKIT_STORAGE_EXPORT extern const FilePath::CharType kDatabaseDirectoryName[];
+WEBKIT_STORAGE_EXPORT extern const FilePath::CharType
+ kTrackerDatabaseFileName[];
class DatabasesTable;
// This class is used to store information about all databases in an origin.
-class OriginInfo {
+class WEBKIT_STORAGE_EXPORT OriginInfo {
public:
OriginInfo();
OriginInfo(const OriginInfo& origin_info);
@@ -75,7 +77,7 @@ class 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 DatabaseTracker
+class WEBKIT_STORAGE_EXPORT DatabaseTracker
: public base::RefCountedThreadSafe<DatabaseTracker> {
public:
class Observer {
« no previous file with comments | « webkit/database/database_quota_client.h ('k') | webkit/database/database_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698