summaryrefslogtreecommitdiffstats
path: root/views/layout
diff options
context:
space:
mode:
Diffstat (limited to 'views/layout')
-rw-r--r--views/layout/box_layout.h2
-rw-r--r--views/layout/fill_layout.h2
-rw-r--r--views/layout/grid_layout.h4
-rw-r--r--views/layout/layout_manager.h4
4 files changed, 6 insertions, 6 deletions
diff --git a/views/layout/box_layout.h b/views/layout/box_layout.h
index e8798f7..2422bb6 100644
--- a/views/layout/box_layout.h
+++ b/views/layout/box_layout.h
@@ -23,7 +23,7 @@ class View;
// child views are always sized according to their preferred size. If the
// host's bounds provide insufficient space, child views will be clamped.
// Excess space will not be distributed.
-class VIEWS_API BoxLayout : public LayoutManager {
+class VIEWS_EXPORT BoxLayout : public LayoutManager {
public:
enum Orientation {
kHorizontal,
diff --git a/views/layout/fill_layout.h b/views/layout/fill_layout.h
index b9451a3..20e989f 100644
--- a/views/layout/fill_layout.h
+++ b/views/layout/fill_layout.h
@@ -18,7 +18,7 @@ namespace views {
// sized to match the bounds of its parent.
//
///////////////////////////////////////////////////////////////////////////////
-class VIEWS_API FillLayout : public LayoutManager {
+class VIEWS_EXPORT FillLayout : public LayoutManager {
public:
FillLayout();
virtual ~FillLayout();
diff --git a/views/layout/grid_layout.h b/views/layout/grid_layout.h
index 062ce8d..ddfaf8e 100644
--- a/views/layout/grid_layout.h
+++ b/views/layout/grid_layout.h
@@ -70,7 +70,7 @@ class View;
struct ViewState;
-class VIEWS_API GridLayout : public LayoutManager {
+class VIEWS_EXPORT GridLayout : public LayoutManager {
public:
// An enumeration of the possible alignments supported by GridLayout.
enum Alignment {
@@ -262,7 +262,7 @@ class VIEWS_API GridLayout : public LayoutManager {
// ColumnSet is used to define a set of columns. GridLayout may have any
// number of ColumnSets. You don't create a ColumnSet directly, instead
// use the AddColumnSet method of GridLayout.
-class VIEWS_API ColumnSet {
+class VIEWS_EXPORT ColumnSet {
public:
~ColumnSet();
diff --git a/views/layout/layout_manager.h b/views/layout/layout_manager.h
index 0fb395a..b34499c 100644
--- a/views/layout/layout_manager.h
+++ b/views/layout/layout_manager.h
@@ -6,7 +6,7 @@
#define VIEWS_LAYOUT_MANAGER_H_
#pragma once
-#include "views/views_api.h"
+#include "views/views_export.h"
namespace gfx {
class Size;
@@ -24,7 +24,7 @@ class View;
// the children of a View according to implementation-specific heuristics.
//
/////////////////////////////////////////////////////////////////////////////
-class VIEWS_API LayoutManager {
+class VIEWS_EXPORT LayoutManager {
public:
virtual ~LayoutManager();