Index: ash/common/shelf/shelf_layout_manager.cc |
diff --git a/ash/common/shelf/shelf_layout_manager.cc b/ash/common/shelf/shelf_layout_manager.cc |
index d072f518e9fb3859eabc14e4def8b71a55185d62..6c93ae81525b1b0a816cc2416b96e3fb864b72ae 100644 |
--- a/ash/common/shelf/shelf_layout_manager.cc |
+++ b/ash/common/shelf/shelf_layout_manager.cc |
@@ -701,14 +701,6 @@ void ShelfLayoutManager::CalculateTargetBounds(const State& state, |
target_bounds->work_area_insets += keyboard_insets; |
} |
- // Also push in the work area inset for the dock if it is visible. |
- if (!dock_bounds_.IsEmpty()) { |
- gfx::Insets dock_insets( |
- 0, (dock_bounds_.x() > 0 ? 0 : dock_bounds_.width()), 0, |
- (dock_bounds_.x() > 0 ? dock_bounds_.width() : 0)); |
- target_bounds->work_area_insets += dock_insets; |
- } |
- |
// Also push in the work area insets for the ChromeVox panel if it's visible. |
if (chromevox_panel_height_) { |
gfx::Insets chromevox_insets(chromevox_panel_height_, 0, 0, 0); |
@@ -970,20 +962,6 @@ int ShelfLayoutManager::GetWorkAreaInsets(const State& state, int size) const { |
return 0; |
} |
-void ShelfLayoutManager::OnDockBoundsChanging( |
- const gfx::Rect& dock_bounds, |
- DockedWindowLayoutManagerObserver::Reason reason) { |
- // Skip shelf layout in case docked notification originates from this class. |
- if (reason == DISPLAY_INSETS_CHANGED) |
- return; |
- if (dock_bounds_ != dock_bounds) { |
- dock_bounds_ = dock_bounds; |
- OnWindowResized(); |
- UpdateVisibilityState(); |
- MaybeUpdateShelfBackground(AnimationChangeType::ANIMATE); |
- } |
-} |
- |
void ShelfLayoutManager::OnLockStateEvent(LockStateObserver::EventType event) { |
if (event == EVENT_LOCK_ANIMATION_STARTED) { |
// Enter the screen locked state and update the visibility to avoid an odd |