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 650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
661 bool blocked) OVERRIDE; | 661 bool blocked) OVERRIDE; |
662 | 662 |
663 // Overridden from BlockedContentTabHelperDelegate: | 663 // Overridden from BlockedContentTabHelperDelegate: |
664 virtual TabContents* GetConstrainingTabContents(TabContents* source) OVERRIDE; | 664 virtual TabContents* GetConstrainingTabContents(TabContents* source) OVERRIDE; |
665 | 665 |
666 // Overridden from BookmarkTabHelperDelegate: | 666 // Overridden from BookmarkTabHelperDelegate: |
667 virtual void URLStarredChanged(TabContents* source, | 667 virtual void URLStarredChanged(TabContents* source, |
668 bool starred) OVERRIDE; | 668 bool starred) OVERRIDE; |
669 | 669 |
670 // Overridden from ZoomObserver: | 670 // Overridden from ZoomObserver: |
| 671 virtual void OnZoomIconChanged(TabContents* source, |
| 672 ZoomController::ZoomIconState state) OVERRIDE; |
671 virtual void OnZoomChanged(TabContents* source, | 673 virtual void OnZoomChanged(TabContents* source, |
| 674 int zoom_percent, |
672 bool can_show_bubble) OVERRIDE; | 675 bool can_show_bubble) OVERRIDE; |
673 | 676 |
674 // Overridden from SelectFileDialog::Listener: | 677 // Overridden from SelectFileDialog::Listener: |
675 virtual void FileSelected(const FilePath& path, | 678 virtual void FileSelected(const FilePath& path, |
676 int index, | 679 int index, |
677 void* params) OVERRIDE; | 680 void* params) OVERRIDE; |
678 virtual void FileSelectedWithExtraInfo( | 681 virtual void FileSelectedWithExtraInfo( |
679 const ui::SelectedFileInfo& file_info, | 682 const ui::SelectedFileInfo& file_info, |
680 int index, | 683 int index, |
681 void* params) OVERRIDE; | 684 void* params) OVERRIDE; |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
920 bool window_has_shown_; | 923 bool window_has_shown_; |
921 | 924 |
922 // Currently open color chooser. Non-NULL after OpenColorChooser is called and | 925 // Currently open color chooser. Non-NULL after OpenColorChooser is called and |
923 // before DidEndColorChooser is called. | 926 // before DidEndColorChooser is called. |
924 scoped_ptr<content::ColorChooser> color_chooser_; | 927 scoped_ptr<content::ColorChooser> color_chooser_; |
925 | 928 |
926 DISALLOW_COPY_AND_ASSIGN(Browser); | 929 DISALLOW_COPY_AND_ASSIGN(Browser); |
927 }; | 930 }; |
928 | 931 |
929 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 932 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
OLD | NEW |