diff options
Diffstat (limited to 'ash/wm/property_util.h')
-rw-r--r-- | ash/wm/property_util.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/ash/wm/property_util.h b/ash/wm/property_util.h index 916a24a..5eec8ba 100644 --- a/ash/wm/property_util.h +++ b/ash/wm/property_util.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -6,6 +6,8 @@ #define ASH_WM_PROPERTY_UTIL_H_ #pragma once +#include "ash/ash_export.h" + namespace aura { class Window; } @@ -18,19 +20,19 @@ namespace ash { // Sets the restore bounds property on |window|. Deletes existing bounds value // if exists. -void SetRestoreBounds(aura::Window* window, const gfx::Rect& bounds); +ASH_EXPORT void SetRestoreBounds(aura::Window* window, const gfx::Rect& bounds); // Same as SetRestoreBounds(), but does nothing if the restore bounds have // already been set. The bounds used are the bounds of the window. -void SetRestoreBoundsIfNotSet(aura::Window* window); +ASH_EXPORT void SetRestoreBoundsIfNotSet(aura::Window* window); // Returns the restore bounds property on |window|. NULL if the // restore bounds property does not exist for |window|. |window| // owns the bounds object. -const gfx::Rect* GetRestoreBounds(aura::Window* window); +ASH_EXPORT const gfx::Rect* GetRestoreBounds(aura::Window* window); // Deletes and clears the restore bounds property on |window|. -void ClearRestoreBounds(aura::Window* window); +ASH_EXPORT void ClearRestoreBounds(aura::Window* window); } |