| Index: ash/aura/wm_shelf_aura.cc
|
| diff --git a/ash/aura/wm_shelf_aura.cc b/ash/aura/wm_shelf_aura.cc
|
| index c5db74ba9cf1d9db4b52a408c330f0d7d9285ad6..25ffb6721edd3ad226d2f156a77043fc7d5f5d1e 100644
|
| --- a/ash/aura/wm_shelf_aura.cc
|
| +++ b/ash/aura/wm_shelf_aura.cc
|
| @@ -59,6 +59,18 @@ ShelfAlignment WmShelfAura::GetAlignment() const {
|
| return shelf_->alignment();
|
| }
|
|
|
| +void WmShelfAura::SetAlignment(ShelfAlignment alignment) {
|
| + shelf_->SetAlignment(alignment);
|
| +}
|
| +
|
| +ShelfAutoHideBehavior WmShelfAura::GetAutoHideBehavior() const {
|
| + return shelf_->auto_hide_behavior();
|
| +}
|
| +
|
| +void WmShelfAura::SetAutoHideBehavior(ShelfAutoHideBehavior behavior) {
|
| + shelf_->SetAutoHideBehavior(behavior);
|
| +}
|
| +
|
| ShelfBackgroundType WmShelfAura::GetBackgroundType() const {
|
| return shelf_->shelf_widget()->GetBackgroundType();
|
| }
|
|
|