| 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 980 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 991 virtual void RegisterProtocolHandler(TabContents* tab, | 991 virtual void RegisterProtocolHandler(TabContents* tab, |
| 992 const std::string& protocol, | 992 const std::string& protocol, |
| 993 const GURL& url, | 993 const GURL& url, |
| 994 const string16& title) OVERRIDE; | 994 const string16& title) OVERRIDE; |
| 995 virtual void RegisterIntentHandler(TabContents* tab, | 995 virtual void RegisterIntentHandler(TabContents* tab, |
| 996 const string16& action, | 996 const string16& action, |
| 997 const string16& type, | 997 const string16& type, |
| 998 const string16& href, | 998 const string16& href, |
| 999 const string16& title, | 999 const string16& title, |
| 1000 const string16& disposition) OVERRIDE; | 1000 const string16& disposition) OVERRIDE; |
| 1001 virtual void WebIntentDispatch(TabContents* tab, | 1001 virtual void WebIntentDispatch( |
| 1002 content::IntentsHost* intents_host) OVERRIDE; | 1002 TabContents* tab, |
| 1003 content::WebIntentsDispatcher* intents_dispatcher) OVERRIDE; |
| 1003 virtual void UpdatePreferredSize(TabContents* source, | 1004 virtual void UpdatePreferredSize(TabContents* source, |
| 1004 const gfx::Size& pref_size) OVERRIDE; | 1005 const gfx::Size& pref_size) OVERRIDE; |
| 1005 | 1006 |
| 1006 virtual void FindReply(TabContents* tab, | 1007 virtual void FindReply(TabContents* tab, |
| 1007 int request_id, | 1008 int request_id, |
| 1008 int number_of_matches, | 1009 int number_of_matches, |
| 1009 const gfx::Rect& selection_rect, | 1010 const gfx::Rect& selection_rect, |
| 1010 int active_match_ordinal, | 1011 int active_match_ordinal, |
| 1011 bool final_update) OVERRIDE; | 1012 bool final_update) OVERRIDE; |
| 1012 | 1013 |
| (...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1422 | 1423 |
| 1423 scoped_refptr<FullscreenController> fullscreen_controller_; | 1424 scoped_refptr<FullscreenController> fullscreen_controller_; |
| 1424 | 1425 |
| 1425 // True if the browser window has been shown at least once. | 1426 // True if the browser window has been shown at least once. |
| 1426 bool window_has_shown_; | 1427 bool window_has_shown_; |
| 1427 | 1428 |
| 1428 DISALLOW_COPY_AND_ASSIGN(Browser); | 1429 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 1429 }; | 1430 }; |
| 1430 | 1431 |
| 1431 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1432 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |