| OLD | NEW |
| 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 #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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 890 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 901 // Overridden from DownloadTabHelperDelegate: | 901 // Overridden from DownloadTabHelperDelegate: |
| 902 virtual bool CanDownload(int request_id) OVERRIDE; | 902 virtual bool CanDownload(int request_id) OVERRIDE; |
| 903 virtual void OnStartDownload(DownloadItem* download, | 903 virtual void OnStartDownload(DownloadItem* download, |
| 904 TabContentsWrapper* tab) OVERRIDE; | 904 TabContentsWrapper* tab) OVERRIDE; |
| 905 | 905 |
| 906 | 906 |
| 907 // Overridden from SelectFileDialog::Listener: | 907 // Overridden from SelectFileDialog::Listener: |
| 908 virtual void FileSelected(const FilePath& path, int index, void* params); | 908 virtual void FileSelected(const FilePath& path, int index, void* params); |
| 909 | 909 |
| 910 // Overridden from NotificationObserver: | 910 // Overridden from NotificationObserver: |
| 911 virtual void Observe(NotificationType type, | 911 virtual void Observe(int type, |
| 912 const NotificationSource& source, | 912 const NotificationSource& source, |
| 913 const NotificationDetails& details); | 913 const NotificationDetails& details); |
| 914 | 914 |
| 915 // Overridden from ProfileSyncServiceObserver: | 915 // Overridden from ProfileSyncServiceObserver: |
| 916 virtual void OnStateChanged(); | 916 virtual void OnStateChanged(); |
| 917 | 917 |
| 918 // Overriden from InstantDelegate: | 918 // Overriden from InstantDelegate: |
| 919 virtual void PrepareForInstant() OVERRIDE; | 919 virtual void PrepareForInstant() OVERRIDE; |
| 920 virtual void ShowInstant(TabContentsWrapper* preview_contents) OVERRIDE; | 920 virtual void ShowInstant(TabContentsWrapper* preview_contents) OVERRIDE; |
| 921 virtual void HideInstant() OVERRIDE; | 921 virtual void HideInstant() OVERRIDE; |
| (...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1261 | 1261 |
| 1262 scoped_ptr<InstantController> instant_; | 1262 scoped_ptr<InstantController> instant_; |
| 1263 scoped_ptr<InstantUnloadHandler> instant_unload_handler_; | 1263 scoped_ptr<InstantUnloadHandler> instant_unload_handler_; |
| 1264 | 1264 |
| 1265 BookmarkBar::State bookmark_bar_state_; | 1265 BookmarkBar::State bookmark_bar_state_; |
| 1266 | 1266 |
| 1267 DISALLOW_COPY_AND_ASSIGN(Browser); | 1267 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 1268 }; | 1268 }; |
| 1269 | 1269 |
| 1270 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1270 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |