| OLD | NEW |
| 1 // Copyright (c) 2010 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/views/tabs/base_tab_strip.h" | 5 #include "chrome/browser/ui/views/tabs/base_tab_strip.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "chrome/browser/ui/view_ids.h" | 8 #include "chrome/browser/ui/view_ids.h" |
| 9 #include "chrome/browser/ui/views/tabs/dragged_tab_controller.h" | 9 #include "chrome/browser/ui/views/tabs/dragged_tab_controller.h" |
| 10 #include "chrome/browser/ui/views/tabs/tab_strip_controller.h" | 10 #include "chrome/browser/ui/views/tabs/tab_strip_controller.h" |
| 11 #include "views/widget/root_view.h" | 11 #include "views/widget/root_view.h" |
| 12 #include "views/window/window.h" | 12 #include "views/window/window.h" |
| 13 | 13 |
| 14 #if defined(OS_WIN) | 14 #if defined(OS_WIN) |
| 15 #include "views/widget/widget_win.h" | 15 #include "views/widget/widget_win.h" |
| (...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 | 472 |
| 473 StopAnimating(false); | 473 StopAnimating(false); |
| 474 | 474 |
| 475 GenerateIdealBounds(); | 475 GenerateIdealBounds(); |
| 476 | 476 |
| 477 for (int i = 0; i < tab_count(); ++i) | 477 for (int i = 0; i < tab_count(); ++i) |
| 478 tab_data_[i].tab->SetBounds(tab_data_[i].ideal_bounds); | 478 tab_data_[i].tab->SetBounds(tab_data_[i].ideal_bounds); |
| 479 | 479 |
| 480 SchedulePaint(); | 480 SchedulePaint(); |
| 481 } | 481 } |
| OLD | NEW |