| 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 990 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1001 const std::string& protocol, | 1001 const std::string& protocol, |
| 1002 const GURL& url, | 1002 const GURL& url, |
| 1003 const string16& title) OVERRIDE; | 1003 const string16& title) OVERRIDE; |
| 1004 virtual void RegisterIntentHandler(TabContents* tab, | 1004 virtual void RegisterIntentHandler(TabContents* tab, |
| 1005 const string16& action, | 1005 const string16& action, |
| 1006 const string16& type, | 1006 const string16& type, |
| 1007 const string16& href, | 1007 const string16& href, |
| 1008 const string16& title, | 1008 const string16& title, |
| 1009 const string16& disposition) OVERRIDE; | 1009 const string16& disposition) OVERRIDE; |
| 1010 virtual void WebIntentDispatch(TabContents* tab, | 1010 virtual void WebIntentDispatch(TabContents* tab, |
| 1011 int routing_id, | 1011 content::IntentsHost* intents_host) OVERRIDE; |
| 1012 const webkit_glue::WebIntentData& intent, | |
| 1013 int intent_id) OVERRIDE; | |
| 1014 virtual void UpdatePreferredSize(TabContents* source, | 1012 virtual void UpdatePreferredSize(TabContents* source, |
| 1015 const gfx::Size& pref_size) OVERRIDE; | 1013 const gfx::Size& pref_size) OVERRIDE; |
| 1016 | 1014 |
| 1017 virtual void FindReply(TabContents* tab, | 1015 virtual void FindReply(TabContents* tab, |
| 1018 int request_id, | 1016 int request_id, |
| 1019 int number_of_matches, | 1017 int number_of_matches, |
| 1020 const gfx::Rect& selection_rect, | 1018 const gfx::Rect& selection_rect, |
| 1021 int active_match_ordinal, | 1019 int active_match_ordinal, |
| 1022 bool final_update) OVERRIDE; | 1020 bool final_update) OVERRIDE; |
| 1023 | 1021 |
| (...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1432 | 1430 |
| 1433 scoped_refptr<FullscreenController> fullscreen_controller_; | 1431 scoped_refptr<FullscreenController> fullscreen_controller_; |
| 1434 | 1432 |
| 1435 // True if the browser window has been shown at least once. | 1433 // True if the browser window has been shown at least once. |
| 1436 bool window_has_shown_; | 1434 bool window_has_shown_; |
| 1437 | 1435 |
| 1438 DISALLOW_COPY_AND_ASSIGN(Browser); | 1436 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 1439 }; | 1437 }; |
| 1440 | 1438 |
| 1441 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1439 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |