| Index: ash/shelf/shelf.cc
|
| diff --git a/ash/shelf/shelf.cc b/ash/shelf/shelf.cc
|
| index 18dd34a8ed6f39c03d6af622f980a3e814a85cf5..58904c42a14adc29db4160e82e11acd114e2acfb 100644
|
| --- a/ash/shelf/shelf.cc
|
| +++ b/ash/shelf/shelf.cc
|
| @@ -79,6 +79,14 @@ bool Shelf::IsHorizontalAlignment() const {
|
| alignment_ == SHELF_ALIGNMENT_TOP;
|
| }
|
|
|
| +void Shelf::SetAutoHideBehavior(ShelfAutoHideBehavior behavior) {
|
| + shelf_widget_->shelf_layout_manager()->SetAutoHideBehavior(behavior);
|
| +}
|
| +
|
| +ShelfAutoHideBehavior Shelf::GetAutoHideBehavior() const {
|
| + return shelf_widget_->shelf_layout_manager()->auto_hide_behavior();
|
| +}
|
| +
|
| gfx::Rect Shelf::GetScreenBoundsOfItemIconForWindow(
|
| const aura::Window* window) {
|
| ShelfID id = GetShelfIDForWindow(window);
|
|
|