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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 1021 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1032 const string16& action, | 1032 const string16& action, |
1033 const string16& type, | 1033 const string16& type, |
1034 const string16& href, | 1034 const string16& href, |
1035 const string16& title, | 1035 const string16& title, |
1036 const string16& disposition) OVERRIDE; | 1036 const string16& disposition) OVERRIDE; |
1037 virtual void WebIntentDispatch( | 1037 virtual void WebIntentDispatch( |
1038 content::WebContents* tab, | 1038 content::WebContents* tab, |
1039 content::WebIntentsDispatcher* intents_dispatcher) OVERRIDE; | 1039 content::WebIntentsDispatcher* intents_dispatcher) OVERRIDE; |
1040 virtual void UpdatePreferredSize(content::WebContents* source, | 1040 virtual void UpdatePreferredSize(content::WebContents* source, |
1041 const gfx::Size& pref_size) OVERRIDE; | 1041 const gfx::Size& pref_size) OVERRIDE; |
| 1042 virtual void ResizeDueToAutoResize(content::WebContents* source, |
| 1043 const gfx::Size& new_size) OVERRIDE; |
1042 | 1044 |
1043 virtual void FindReply(content::WebContents* tab, | 1045 virtual void FindReply(content::WebContents* tab, |
1044 int request_id, | 1046 int request_id, |
1045 int number_of_matches, | 1047 int number_of_matches, |
1046 const gfx::Rect& selection_rect, | 1048 const gfx::Rect& selection_rect, |
1047 int active_match_ordinal, | 1049 int active_match_ordinal, |
1048 bool final_update) OVERRIDE; | 1050 bool final_update) OVERRIDE; |
1049 | 1051 |
1050 virtual void CrashedPlugin(content::WebContents* tab, | 1052 virtual void CrashedPlugin(content::WebContents* tab, |
1051 const FilePath& plugin_path) OVERRIDE; | 1053 const FilePath& plugin_path) OVERRIDE; |
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1457 | 1459 |
1458 scoped_refptr<FullscreenController> fullscreen_controller_; | 1460 scoped_refptr<FullscreenController> fullscreen_controller_; |
1459 | 1461 |
1460 // True if the browser window has been shown at least once. | 1462 // True if the browser window has been shown at least once. |
1461 bool window_has_shown_; | 1463 bool window_has_shown_; |
1462 | 1464 |
1463 DISALLOW_COPY_AND_ASSIGN(Browser); | 1465 DISALLOW_COPY_AND_ASSIGN(Browser); |
1464 }; | 1466 }; |
1465 | 1467 |
1466 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1468 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
OLD | NEW |