| 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 1030 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1041 const string16& action, | 1041 const string16& action, |
| 1042 const string16& type, | 1042 const string16& type, |
| 1043 const string16& href, | 1043 const string16& href, |
| 1044 const string16& title, | 1044 const string16& title, |
| 1045 const string16& disposition) OVERRIDE; | 1045 const string16& disposition) OVERRIDE; |
| 1046 virtual void WebIntentDispatch( | 1046 virtual void WebIntentDispatch( |
| 1047 content::WebContents* tab, | 1047 content::WebContents* tab, |
| 1048 content::WebIntentsDispatcher* intents_dispatcher) OVERRIDE; | 1048 content::WebIntentsDispatcher* intents_dispatcher) OVERRIDE; |
| 1049 virtual void UpdatePreferredSize(content::WebContents* source, | 1049 virtual void UpdatePreferredSize(content::WebContents* source, |
| 1050 const gfx::Size& pref_size) OVERRIDE; | 1050 const gfx::Size& pref_size) OVERRIDE; |
| 1051 virtual void ResizeDueToAutoResize(content::WebContents* source, |
| 1052 const gfx::Size& new_size) OVERRIDE; |
| 1051 | 1053 |
| 1052 virtual void FindReply(content::WebContents* tab, | 1054 virtual void FindReply(content::WebContents* tab, |
| 1053 int request_id, | 1055 int request_id, |
| 1054 int number_of_matches, | 1056 int number_of_matches, |
| 1055 const gfx::Rect& selection_rect, | 1057 const gfx::Rect& selection_rect, |
| 1056 int active_match_ordinal, | 1058 int active_match_ordinal, |
| 1057 bool final_update) OVERRIDE; | 1059 bool final_update) OVERRIDE; |
| 1058 | 1060 |
| 1059 virtual void CrashedPlugin(content::WebContents* tab, | 1061 virtual void CrashedPlugin(content::WebContents* tab, |
| 1060 const FilePath& plugin_path) OVERRIDE; | 1062 const FilePath& plugin_path) OVERRIDE; |
| (...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1468 | 1470 |
| 1469 scoped_ptr<ExtensionWindowController> extension_window_controller_; | 1471 scoped_ptr<ExtensionWindowController> extension_window_controller_; |
| 1470 | 1472 |
| 1471 // True if the browser window has been shown at least once. | 1473 // True if the browser window has been shown at least once. |
| 1472 bool window_has_shown_; | 1474 bool window_has_shown_; |
| 1473 | 1475 |
| 1474 DISALLOW_COPY_AND_ASSIGN(Browser); | 1476 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 1475 }; | 1477 }; |
| 1476 | 1478 |
| 1477 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1479 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |