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 959 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
970 const std::string& protocol, | 970 const std::string& protocol, |
971 const GURL& url, | 971 const GURL& url, |
972 const string16& title) OVERRIDE; | 972 const string16& title) OVERRIDE; |
973 virtual void RegisterIntentHandler(TabContents* tab, | 973 virtual void RegisterIntentHandler(TabContents* tab, |
974 const string16& action, | 974 const string16& action, |
975 const string16& type, | 975 const string16& type, |
976 const string16& href, | 976 const string16& href, |
977 const string16& title) OVERRIDE; | 977 const string16& title) OVERRIDE; |
978 virtual void WebIntentDispatch(TabContents* tab, | 978 virtual void WebIntentDispatch(TabContents* tab, |
979 int routing_id, | 979 int routing_id, |
980 const string16& action, | 980 const webkit_glue::WebIntentData& intent, |
981 const string16& type, | |
982 const string16& data, | |
983 int intent_id) OVERRIDE; | 981 int intent_id) OVERRIDE; |
984 virtual void UpdatePreferredSize(TabContents* source, | 982 virtual void UpdatePreferredSize(TabContents* source, |
985 const gfx::Size& pref_size) OVERRIDE; | 983 const gfx::Size& pref_size) OVERRIDE; |
986 | 984 |
987 virtual void FindReply(TabContents* tab, | 985 virtual void FindReply(TabContents* tab, |
988 int request_id, | 986 int request_id, |
989 int number_of_matches, | 987 int number_of_matches, |
990 const gfx::Rect& selection_rect, | 988 const gfx::Rect& selection_rect, |
991 int active_match_ordinal, | 989 int active_match_ordinal, |
992 bool final_update) OVERRIDE; | 990 bool final_update) OVERRIDE; |
(...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1428 // True if the current tab entered fullscreen mode via webkitRequestFullScreen | 1426 // True if the current tab entered fullscreen mode via webkitRequestFullScreen |
1429 bool tab_caused_fullscreen_; | 1427 bool tab_caused_fullscreen_; |
1430 | 1428 |
1431 // True if the browser window has been shown at least once. | 1429 // True if the browser window has been shown at least once. |
1432 bool window_has_shown_; | 1430 bool window_has_shown_; |
1433 | 1431 |
1434 DISALLOW_COPY_AND_ASSIGN(Browser); | 1432 DISALLOW_COPY_AND_ASSIGN(Browser); |
1435 }; | 1433 }; |
1436 | 1434 |
1437 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1435 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
OLD | NEW |