| 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 951 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 962 const std::string& protocol, | 962 const std::string& protocol, |
| 963 const GURL& url, | 963 const GURL& url, |
| 964 const string16& title) OVERRIDE; | 964 const string16& title) OVERRIDE; |
| 965 virtual void RegisterIntentHandler(TabContents* tab, | 965 virtual void RegisterIntentHandler(TabContents* tab, |
| 966 const string16& action, | 966 const string16& action, |
| 967 const string16& type, | 967 const string16& type, |
| 968 const string16& href, | 968 const string16& href, |
| 969 const string16& title) OVERRIDE; | 969 const string16& title) OVERRIDE; |
| 970 virtual void WebIntentDispatch(TabContents* tab, | 970 virtual void WebIntentDispatch(TabContents* tab, |
| 971 int routing_id, | 971 int routing_id, |
| 972 const string16& action, | 972 const webkit_glue::WebIntentData& intent, |
| 973 const string16& type, | |
| 974 const string16& data, | |
| 975 int intent_id) OVERRIDE; | 973 int intent_id) OVERRIDE; |
| 976 virtual void UpdatePreferredSize(TabContents* source, | 974 virtual void UpdatePreferredSize(TabContents* source, |
| 977 const gfx::Size& pref_size) OVERRIDE; | 975 const gfx::Size& pref_size) OVERRIDE; |
| 978 | 976 |
| 979 virtual void FindReply(TabContents* tab, | 977 virtual void FindReply(TabContents* tab, |
| 980 int request_id, | 978 int request_id, |
| 981 int number_of_matches, | 979 int number_of_matches, |
| 982 const gfx::Rect& selection_rect, | 980 const gfx::Rect& selection_rect, |
| 983 int active_match_ordinal, | 981 int active_match_ordinal, |
| 984 bool final_update) OVERRIDE; | 982 bool final_update) OVERRIDE; |
| (...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1416 // Tab to notify when the browser exits fullscreen mode. | 1414 // Tab to notify when the browser exits fullscreen mode. |
| 1417 TabContentsWrapper* fullscreened_tab_; | 1415 TabContentsWrapper* fullscreened_tab_; |
| 1418 | 1416 |
| 1419 // True if the current tab is in fullscreen mode. | 1417 // True if the current tab is in fullscreen mode. |
| 1420 bool tab_caused_fullscreen_; | 1418 bool tab_caused_fullscreen_; |
| 1421 | 1419 |
| 1422 DISALLOW_COPY_AND_ASSIGN(Browser); | 1420 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 1423 }; | 1421 }; |
| 1424 | 1422 |
| 1425 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1423 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |