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

Unified Diff: webkit/dom_storage/dom_storage_export.h

Issue 11088005: Automate more Better Session Restore tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: export inner 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/dom_storage/dom_storage_database_adapter.h ('k') | webkit/dom_storage/dom_storage_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/dom_storage/dom_storage_export.h
diff --git a/webkit/glue/webkit_glue_export.h b/webkit/dom_storage/dom_storage_export.h
similarity index 39%
copy from webkit/glue/webkit_glue_export.h
copy to webkit/dom_storage/dom_storage_export.h
index 0cbd3650a6c29fb5aa1c74c2c75f002d10f363be..34a29144bbfaeb6b9bb827509061e650817f6d91 100644
--- a/webkit/glue/webkit_glue_export.h
+++ b/webkit/dom_storage/dom_storage_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_GLUE_WEBKIT_GLUE_EXPORT_H_
-#define WEBKIT_GLUE_WEBKIT_GLUE_EXPORT_H_
+#ifndef WEBKIT_DOM_STORAGE_DOM_STORAGE_EXPORT_H_
+#define WEBKIT_DOM_STORAGE_DOM_STORAGE_EXPORT_H_
#if defined(COMPONENT_BUILD)
#if defined(WIN32)
-#if defined(WEBKIT_GLUE_IMPLEMENTATION)
-#define WEBKIT_GLUE_EXPORT __declspec(dllexport)
+#if defined(DOM_STORAGE_IMPLEMENTATION)
+#define DOM_STORAGE_EXPORT __declspec(dllexport)
#else
-#define WEBKIT_GLUE_EXPORT __declspec(dllimport)
-#endif // defined(WEBKIT_GLUE_IMPLEMENTATION)
+#define DOM_STORAGE_EXPORT __declspec(dllimport)
+#endif // defined(DOM_STORAGE_IMPLEMENTATION)
#else // defined(WIN32)
-#if defined(WEBKIT_GLUE_IMPLEMENTATION)
-#define WEBKIT_GLUE_EXPORT __attribute__((visibility("default")))
+#if defined(DOM_STORAGE_IMPLEMENTATION)
+#define DOM_STORAGE_EXPORT __attribute__((visibility("default")))
#else
-#define WEBKIT_GLUE_EXPORT
+#define DOM_STORAGE_EXPORT
#endif
#endif
#else // defined(COMPONENT_BUILD)
-#define WEBKIT_GLUE_EXPORT
+#define DOM_STORAGE_EXPORT
#endif
-#endif // WEBKIT_GLUE_WEBKIT_GLUE_EXPORT_H_
+#endif // WEBKIT_DOM_STORAGE_DOM_STORAGE_EXPORT_H_
« no previous file with comments | « webkit/dom_storage/dom_storage_database_adapter.h ('k') | webkit/dom_storage/dom_storage_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698