Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(136)

Side by Side Diff: chrome/browser/ui/panels/panel_manager.cc

Issue 8539025: Fix Panel to always detect when a tab is added. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: feedback changes Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW
« chrome/browser/ui/panels/panel.cc ('K') | « chrome/browser/ui/panels/panel_browsertest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698