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_TABSTRIP_H_ | 5 #ifndef CHROME_BROWSER_UI_BROWSER_TABSTRIP_H_ |
6 #define CHROME_BROWSER_UI_BROWSER_TABSTRIP_H_ | 6 #define CHROME_BROWSER_UI_BROWSER_TABSTRIP_H_ |
7 | 7 |
8 #include "content/public/common/page_transition_types.h" | |
9 #include "content/public/browser/navigation_controller.h" | 8 #include "content/public/browser/navigation_controller.h" |
10 #include "content/public/browser/web_contents.h" | 9 #include "content/public/browser/web_contents.h" |
11 #include "webkit/glue/window_open_disposition.h" | 10 #include "content/public/common/page_transition_types.h" |
| 11 #include "ui/base/window_open_disposition.h" |
12 | 12 |
13 class Browser; | 13 class Browser; |
14 class GURL; | 14 class GURL; |
15 class Profile; | 15 class Profile; |
16 | 16 |
17 namespace content { | 17 namespace content { |
18 class SiteInstance; | 18 class SiteInstance; |
19 } | 19 } |
20 | 20 |
21 namespace gfx { | 21 namespace gfx { |
(...skipping 29 matching lines...) Expand all Loading... |
51 | 51 |
52 // Closes the specified WebContents in the specified Browser. If | 52 // Closes the specified WebContents in the specified Browser. If |
53 // |add_to_history| is true, an entry in the historical tab database is created. | 53 // |add_to_history| is true, an entry in the historical tab database is created. |
54 void CloseWebContents(Browser* browser, | 54 void CloseWebContents(Browser* browser, |
55 content::WebContents* contents, | 55 content::WebContents* contents, |
56 bool add_to_history); | 56 bool add_to_history); |
57 | 57 |
58 } // namespace chrome | 58 } // namespace chrome |
59 | 59 |
60 #endif // CHROME_BROWSER_UI_BROWSER_TABSTRIP_H_ | 60 #endif // CHROME_BROWSER_UI_BROWSER_TABSTRIP_H_ |
OLD | NEW |