| 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_
|
|
|