| Index: ui/views/debug_utils.h
|
| diff --git a/ui/views/debug_utils.h b/ui/views/debug_utils.h
|
| index 4b998ceb6e73c2a196cf15a896a089afb535b10d..fc4db6048bc550a38ce9e785f0babf5dfa02c484 100644
|
| --- a/ui/views/debug_utils.h
|
| +++ b/ui/views/debug_utils.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef UI_VIEWS_DEBUG_UTILS_H_
|
| #define UI_VIEWS_DEBUG_UTILS_H_
|
|
|
| +#include "ui/views/views_export.h"
|
| +
|
| namespace views {
|
|
|
| class View;
|
| @@ -12,10 +14,10 @@ class View;
|
| #ifndef NDEBUG
|
|
|
| // Log the view hierarchy.
|
| -void PrintViewHierarchy(const View* view);
|
| +VIEWS_EXPORT void PrintViewHierarchy(const View* view);
|
|
|
| // Log the focus traversal hierarchy.
|
| -void PrintFocusHierarchy(const View* view);
|
| +VIEWS_EXPORT void PrintFocusHierarchy(const View* view);
|
|
|
| #endif // NDEBUG
|
|
|
|
|