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

Unified Diff: webkit/common/webkit_common_export.h

Issue 442383002: Move storage-related files from webkit/ to new top-level directory storage/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . 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
« no previous file with comments | « webkit/common/webkit_common.gyp ('k') | webkit/common/webkit_storage_common_export.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/common/webkit_common_export.h
diff --git a/webkit/common/webkit_common_export.h b/webkit/common/webkit_common_export.h
index 363937bdbebf91f4a8d345e02837375f52409b58..8f7ec4fc6108de0a808a1e400776788a59a99a30 100644
--- a/webkit/common/webkit_common_export.h
+++ b/webkit/common/webkit_common_export.h
@@ -2,28 +2,28 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef WEBKIT_COMMON_WEBKIT_COMMON_EXPORT_H_
-#define WEBKIT_COMMON_WEBKIT_COMMON_EXPORT_H_
+#ifndef WEBKIT_COMMON_STORAGE_EXPORT_H_
+#define WEBKIT_COMMON_STORAGE_EXPORT_H_
#if defined(COMPONENT_BUILD)
#if defined(WIN32)
#if defined(WEBKIT_COMMON_IMPLEMENTATION)
-#define WEBKIT_COMMON_EXPORT __declspec(dllexport)
+#define STORAGE_EXPORT __declspec(dllexport)
#else
-#define WEBKIT_COMMON_EXPORT __declspec(dllimport)
+#define STORAGE_EXPORT __declspec(dllimport)
#endif // defined(WEBKIT_COMMON_IMPLEMENTATION)
#else // defined(WIN32)
#if defined(WEBKIT_COMMON_IMPLEMENTATION)
-#define WEBKIT_COMMON_EXPORT __attribute__((visibility("default")))
+#define STORAGE_EXPORT __attribute__((visibility("default")))
#else
-#define WEBKIT_COMMON_EXPORT
+#define STORAGE_EXPORT
#endif
#endif
#else // defined(COMPONENT_BUILD)
-#define WEBKIT_COMMON_EXPORT
+#define STORAGE_EXPORT
#endif
-#endif // WEBKIT_COMMON_WEBKIT_COMMON_EXPORT_H_
+#endif // WEBKIT_COMMON_STORAGE_EXPORT_H_
« no previous file with comments | « webkit/common/webkit_common.gyp ('k') | webkit/common/webkit_storage_common_export.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698