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

Unified Diff: webkit/common/database/database_identifier.h

Issue 520913003: Split storage macros into storage and storage_common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move storage_export.h back to browser/ and rename storage_browser_export.h Created 6 years, 4 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
Index: webkit/common/database/database_identifier.h
diff --git a/webkit/common/database/database_identifier.h b/webkit/common/database/database_identifier.h
index e70db6f54f5fefaaacee63712077355725aff437..b72c02b8928b9f406512efcadb15babded00f93d 100644
--- a/webkit/common/database/database_identifier.h
+++ b/webkit/common/database/database_identifier.h
@@ -10,16 +10,16 @@
#include "base/basictypes.h"
#include "base/strings/string_piece.h"
#include "url/gurl.h"
-#include "webkit/common/storage_export.h"
+#include "webkit/common/storage_common_export.h"
namespace storage {
-STORAGE_EXPORT std::string GetIdentifierFromOrigin(
+STORAGE_COMMON_EXPORT std::string GetIdentifierFromOrigin(
const GURL& origin);
-STORAGE_EXPORT GURL GetOriginFromIdentifier(
+STORAGE_COMMON_EXPORT GURL GetOriginFromIdentifier(
const std::string& identifier);
-class STORAGE_EXPORT DatabaseIdentifier {
+class STORAGE_COMMON_EXPORT DatabaseIdentifier {
public:
static const DatabaseIdentifier UniqueFileIdentifier();
static DatabaseIdentifier CreateFromOrigin(const GURL& origin);

Powered by Google App Engine
This is Rietveld 408576698