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

Unified Diff: webkit/browser/database/database_tracker.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/database/database_quota_client.h ('k') | webkit/browser/database/database_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {
« no previous file with comments | « webkit/browser/database/database_quota_client.h ('k') | webkit/browser/database/database_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698