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

Unified Diff: components/sessions/sessions_export.h

Issue 14497003: Moves TabNavigation into components/sessions and renames (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Really remove webkit_support Created 7 years, 8 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 | « components/sessions/serialized_navigation_entry_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sessions/sessions_export.h
diff --git a/components/user_prefs/user_prefs_export.h b/components/sessions/sessions_export.h
similarity index 44%
copy from components/user_prefs/user_prefs_export.h
copy to components/sessions/sessions_export.h
index 3d20222a2b9e40aa71ead58304767b34176da471..66ac82270bca30d13eef066610534c539875c57a 100644
--- a/components/user_prefs/user_prefs_export.h
+++ b/components/sessions/sessions_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 COMPONENTS_USER_PREFS_USER_PREFS_EXPORT_H_
-#define COMPONENTS_USER_PREFS_USER_PREFS_EXPORT_H_
+#ifndef COMPONENTS_SESSIONS_SESSIONS_EXPORT_H_
+#define COMPONENTS_SESSIONS_SESSIONS_EXPORT_H_
#if defined(COMPONENT_BUILD)
#if defined(WIN32)
-#if defined(USER_PREFS_IMPLEMENTATION)
-#define USER_PREFS_EXPORT __declspec(dllexport)
+#if defined(SESSIONS_IMPLEMENTATION)
+#define SESSIONS_EXPORT __declspec(dllexport)
#else
-#define USER_PREFS_EXPORT __declspec(dllimport)
+#define SESSIONS_EXPORT __declspec(dllimport)
#endif // defined(BASE_PREFS_IMPLEMENTATION)
#else // defined(WIN32)
-#if defined(USER_PREFS_IMPLEMENTATION)
-#define USER_PREFS_EXPORT __attribute__((visibility("default")))
+#if defined(SESSIONS_IMPLEMENTATION)
+#define SESSIONS_EXPORT __attribute__((visibility("default")))
#else
-#define USER_PREFS_EXPORT
+#define SESSIONS_EXPORT
#endif
#endif
#else // defined(COMPONENT_BUILD)
-#define USER_PREFS_EXPORT
+#define SESSIONS_EXPORT
#endif
-#endif // COMPONENTS_USER_PREFS_USER_PREFS_EXPORT_H_
+#endif // COMPONENTS_SESSIONS_SESSIONS_EXPORT_H_
« no previous file with comments | « components/sessions/serialized_navigation_entry_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698