[M108 Migration][Callback] Bring up ewk callbacks which are related with page loading
[platform/framework/web/chromium-efl.git] / ash / ash_export.h
1 // Copyright 2012 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef ASH_ASH_EXPORT_H_
6 #define ASH_ASH_EXPORT_H_
7
8 // Defines ASH_EXPORT so that functionality implemented by the Ash module can
9 // be exported to consumers.
10
11 #if defined(COMPONENT_BUILD)
12
13 #if defined(ASH_IMPLEMENTATION)
14 #define ASH_EXPORT __attribute__((visibility("default")))
15 #else
16 #define ASH_EXPORT
17 #endif
18
19 #else  // defined(COMPONENT_BUILD)
20 #define ASH_EXPORT
21 #endif
22
23 #endif  // ASH_ASH_EXPORT_H_