OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_TAB_CONTENTS_TAB_CONTENTS_H_ | 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
7 | 7 |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 | 9 |
10 #include <map> | 10 #include <map> |
11 #include <set> | 11 #include <set> |
12 #include <string> | 12 #include <string> |
13 #include <vector> | 13 #include <vector> |
14 | 14 |
15 #include "base/basictypes.h" | 15 #include "base/basictypes.h" |
16 #include "base/gfx/native_widget_types.h" | 16 #include "base/gfx/native_widget_types.h" |
17 #include "base/gfx/rect.h" | 17 #include "base/gfx/rect.h" |
18 #include "base/scoped_ptr.h" | 18 #include "base/scoped_ptr.h" |
19 #include "chrome/browser/autocomplete/autocomplete_edit.h" | 19 #include "chrome/browser/autocomplete/autocomplete_edit.h" |
20 #include "chrome/browser/cancelable_request.h" | 20 #include "chrome/browser/cancelable_request.h" |
21 #include "chrome/browser/download/save_package.h" | 21 #include "chrome/browser/download/save_package.h" |
22 #include "chrome/browser/fav_icon_helper.h" | 22 #include "chrome/browser/fav_icon_helper.h" |
23 #include "chrome/browser/find_notification_details.h" | 23 #include "chrome/browser/find_notification_details.h" |
24 #include "chrome/browser/shell_dialogs.h" | 24 #include "chrome/browser/shell_dialogs.h" |
25 #include "chrome/browser/renderer_host/render_view_host_delegate.h" | 25 #include "chrome/browser/renderer_host/render_view_host_delegate.h" |
26 #include "chrome/browser/renderer_preferences.h" | |
27 #include "chrome/browser/tab_contents/constrained_window.h" | 26 #include "chrome/browser/tab_contents/constrained_window.h" |
28 #include "chrome/browser/tab_contents/infobar_delegate.h" | 27 #include "chrome/browser/tab_contents/infobar_delegate.h" |
29 #include "chrome/browser/tab_contents/navigation_controller.h" | 28 #include "chrome/browser/tab_contents/navigation_controller.h" |
30 #include "chrome/browser/tab_contents/page_navigator.h" | 29 #include "chrome/browser/tab_contents/page_navigator.h" |
31 #include "chrome/browser/tab_contents/render_view_host_manager.h" | 30 #include "chrome/browser/tab_contents/render_view_host_manager.h" |
32 #include "chrome/common/gears_api.h" | 31 #include "chrome/common/gears_api.h" |
33 #include "chrome/common/navigation_types.h" | 32 #include "chrome/common/navigation_types.h" |
34 #include "chrome/common/notification_registrar.h" | 33 #include "chrome/common/notification_registrar.h" |
35 #include "chrome/common/property_bag.h" | 34 #include "chrome/common/property_bag.h" |
| 35 #include "chrome/common/renderer_preferences.h" |
36 #include "net/base/load_states.h" | 36 #include "net/base/load_states.h" |
37 #include "webkit/glue/password_form.h" | 37 #include "webkit/glue/password_form.h" |
38 #include "webkit/glue/webpreferences.h" | 38 #include "webkit/glue/webpreferences.h" |
39 | 39 |
40 #if defined(OS_MACOSX) || defined(OS_LINUX) | 40 #if defined(OS_MACOSX) || defined(OS_LINUX) |
41 // Remove when we've finished porting the supporting classes. | 41 // Remove when we've finished porting the supporting classes. |
42 #include "chrome/common/temp_scaffolding_stubs.h" | 42 #include "chrome/common/temp_scaffolding_stubs.h" |
43 #elif defined(OS_WIN) | 43 #elif defined(OS_WIN) |
44 #include "chrome/browser/printing/print_view_manager.h" | 44 #include "chrome/browser/printing/print_view_manager.h" |
45 #endif | 45 #endif |
(...skipping 1006 matching lines...) Loading... |
1052 // True if the user has decided to block future javascript messages. This is | 1052 // True if the user has decided to block future javascript messages. This is |
1053 // reset on navigations to false on navigations. | 1053 // reset on navigations to false on navigations. |
1054 bool suppress_javascript_messages_; | 1054 bool suppress_javascript_messages_; |
1055 | 1055 |
1056 // --------------------------------------------------------------------------- | 1056 // --------------------------------------------------------------------------- |
1057 | 1057 |
1058 DISALLOW_COPY_AND_ASSIGN(TabContents); | 1058 DISALLOW_COPY_AND_ASSIGN(TabContents); |
1059 }; | 1059 }; |
1060 | 1060 |
1061 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 1061 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
OLD | NEW |