OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/ui/panels/panel_manager.h" | 5 #include "chrome/browser/ui/panels/panel_manager.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
(...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
593 | 593 |
594 // Start from the bottom to avoid reshuffling. | 594 // Start from the bottom to avoid reshuffling. |
595 for (Panels::reverse_iterator iter = panels_copy.rbegin(); | 595 for (Panels::reverse_iterator iter = panels_copy.rbegin(); |
596 iter != panels_copy.rend(); ++iter) | 596 iter != panels_copy.rend(); ++iter) |
597 (*iter)->Close(); | 597 (*iter)->Close(); |
598 } | 598 } |
599 | 599 |
600 bool PanelManager::is_dragging_panel() const { | 600 bool PanelManager::is_dragging_panel() const { |
601 return dragging_panel_index_ != kInvalidPanelIndex; | 601 return dragging_panel_index_ != kInvalidPanelIndex; |
602 } | 602 } |
603 | |
OLD | NEW |