| 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_BROWSER_H_ | 5 #ifndef CHROME_BROWSER_UI_BROWSER_H_ |
| 6 #define CHROME_BROWSER_UI_BROWSER_H_ | 6 #define CHROME_BROWSER_UI_BROWSER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 virtual void TabClosingAt(TabStripModel* tab_strip_model, | 433 virtual void TabClosingAt(TabStripModel* tab_strip_model, |
| 434 content::WebContents* contents, | 434 content::WebContents* contents, |
| 435 int index) OVERRIDE; | 435 int index) OVERRIDE; |
| 436 virtual void TabDetachedAt(content::WebContents* contents, | 436 virtual void TabDetachedAt(content::WebContents* contents, |
| 437 int index) OVERRIDE; | 437 int index) OVERRIDE; |
| 438 virtual void TabDeactivated(content::WebContents* contents) OVERRIDE; | 438 virtual void TabDeactivated(content::WebContents* contents) OVERRIDE; |
| 439 virtual void ActiveTabChanged(TabContents* old_contents, | 439 virtual void ActiveTabChanged(TabContents* old_contents, |
| 440 TabContents* new_contents, | 440 TabContents* new_contents, |
| 441 int index, | 441 int index, |
| 442 bool user_gesture) OVERRIDE; | 442 bool user_gesture) OVERRIDE; |
| 443 virtual void TabMoved(TabContents* contents, | 443 virtual void TabMoved(content::WebContents* contents, |
| 444 int from_index, | 444 int from_index, |
| 445 int to_index) OVERRIDE; | 445 int to_index) OVERRIDE; |
| 446 virtual void TabReplacedAt(TabStripModel* tab_strip_model, | 446 virtual void TabReplacedAt(TabStripModel* tab_strip_model, |
| 447 TabContents* old_contents, | 447 TabContents* old_contents, |
| 448 TabContents* new_contents, | 448 TabContents* new_contents, |
| 449 int index) OVERRIDE; | 449 int index) OVERRIDE; |
| 450 virtual void TabPinnedStateChanged(content::WebContents* contents, | 450 virtual void TabPinnedStateChanged(content::WebContents* contents, |
| 451 int index) OVERRIDE; | 451 int index) OVERRIDE; |
| 452 virtual void TabStripEmpty() OVERRIDE; | 452 virtual void TabStripEmpty() OVERRIDE; |
| 453 | 453 |
| (...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 951 bool window_has_shown_; | 951 bool window_has_shown_; |
| 952 | 952 |
| 953 // Currently open color chooser. Non-NULL after OpenColorChooser is called and | 953 // Currently open color chooser. Non-NULL after OpenColorChooser is called and |
| 954 // before DidEndColorChooser is called. | 954 // before DidEndColorChooser is called. |
| 955 scoped_ptr<content::ColorChooser> color_chooser_; | 955 scoped_ptr<content::ColorChooser> color_chooser_; |
| 956 | 956 |
| 957 DISALLOW_COPY_AND_ASSIGN(Browser); | 957 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 958 }; | 958 }; |
| 959 | 959 |
| 960 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 960 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |