| 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 736 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 747 // In-progress download termination handling ///////////////////////////////// | 747 // In-progress download termination handling ///////////////////////////////// |
| 748 | 748 |
| 749 // Called when the window is closing to check if potential in-progress | 749 // Called when the window is closing to check if potential in-progress |
| 750 // downloads should prevent it from closing. | 750 // downloads should prevent it from closing. |
| 751 // Returns true if the window can close, false otherwise. | 751 // Returns true if the window can close, false otherwise. |
| 752 bool CanCloseWithInProgressDownloads(); | 752 bool CanCloseWithInProgressDownloads(); |
| 753 | 753 |
| 754 // Assorted utility functions /////////////////////////////////////////////// | 754 // Assorted utility functions /////////////////////////////////////////////// |
| 755 | 755 |
| 756 // Sets the specified browser as the delegate of the WebContents and all the | 756 // Sets the specified browser as the delegate of the WebContents and all the |
| 757 // associated tab helpers that are needed. | 757 // associated tab helpers that are needed. If |set_delegate| is true, this |
| 758 void SetAsDelegate(content::WebContents* web_contents, Browser* delegate); | 758 // browser object is set as a delegate for |web_contents| components, else |
| 759 // is is removed as a delegate. |
| 760 void SetAsDelegate(content::WebContents* web_contents, bool set_delegate); |
| 759 | 761 |
| 760 // Shows the Find Bar, optionally selecting the next entry that matches the | 762 // Shows the Find Bar, optionally selecting the next entry that matches the |
| 761 // existing search string for that Tab. |forward_direction| controls the | 763 // existing search string for that Tab. |forward_direction| controls the |
| 762 // search direction. | 764 // search direction. |
| 763 void FindInPage(bool find_next, bool forward_direction); | 765 void FindInPage(bool find_next, bool forward_direction); |
| 764 | 766 |
| 765 // Closes the frame. | 767 // Closes the frame. |
| 766 // TODO(beng): figure out if we need this now that the frame itself closes | 768 // TODO(beng): figure out if we need this now that the frame itself closes |
| 767 // after a return to the message loop. | 769 // after a return to the message loop. |
| 768 void CloseFrame(); | 770 void CloseFrame(); |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 935 base::WeakPtrFactory<Browser> weak_factory_; | 937 base::WeakPtrFactory<Browser> weak_factory_; |
| 936 | 938 |
| 937 scoped_ptr<BrowserContentTranslateDriverObserver> translate_driver_observer_; | 939 scoped_ptr<BrowserContentTranslateDriverObserver> translate_driver_observer_; |
| 938 | 940 |
| 939 scoped_ptr<chrome::ValidationMessageBubble> validation_message_bubble_; | 941 scoped_ptr<chrome::ValidationMessageBubble> validation_message_bubble_; |
| 940 | 942 |
| 941 DISALLOW_COPY_AND_ASSIGN(Browser); | 943 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 942 }; | 944 }; |
| 943 | 945 |
| 944 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 946 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |