OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef CHROME_BROWSER_UI_VIEWS_TABS_TAB_DRAG_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_TABS_TAB_DRAG_CONTROLLER_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_TABS_TAB_DRAG_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_TABS_TAB_DRAG_CONTROLLER_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
611 | 611 |
612 // Non-null for the duration of RunMoveLoop. | 612 // Non-null for the duration of RunMoveLoop. |
613 views::Widget* move_loop_widget_; | 613 views::Widget* move_loop_widget_; |
614 | 614 |
615 // If non-null set to true from destructor. | 615 // If non-null set to true from destructor. |
616 bool* destroyed_; | 616 bool* destroyed_; |
617 | 617 |
618 // See description above getter. | 618 // See description above getter. |
619 bool is_mutating_; | 619 bool is_mutating_; |
620 | 620 |
621 // TODO(sky): used in tracking crash; see 275931. | |
622 bool saving_focus_; | |
623 | |
624 DISALLOW_COPY_AND_ASSIGN(TabDragController); | 621 DISALLOW_COPY_AND_ASSIGN(TabDragController); |
625 }; | 622 }; |
626 | 623 |
627 #endif // CHROME_BROWSER_UI_VIEWS_TABS_TAB_DRAG_CONTROLLER_H_ | 624 #endif // CHROME_BROWSER_UI_VIEWS_TABS_TAB_DRAG_CONTROLLER_H_ |
OLD | NEW |