| 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> |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 #include "chrome/common/gears_api.h" | 33 #include "chrome/common/gears_api.h" |
| 34 #include "chrome/common/navigation_types.h" | 34 #include "chrome/common/navigation_types.h" |
| 35 #include "chrome/common/notification_registrar.h" | 35 #include "chrome/common/notification_registrar.h" |
| 36 #include "chrome/common/page_action.h" | 36 #include "chrome/common/page_action.h" |
| 37 #include "chrome/common/property_bag.h" | 37 #include "chrome/common/property_bag.h" |
| 38 #include "chrome/common/renderer_preferences.h" | 38 #include "chrome/common/renderer_preferences.h" |
| 39 #include "net/base/load_states.h" | 39 #include "net/base/load_states.h" |
| 40 #include "webkit/glue/password_form.h" | 40 #include "webkit/glue/password_form.h" |
| 41 #include "webkit/glue/webpreferences.h" | 41 #include "webkit/glue/webpreferences.h" |
| 42 | 42 |
| 43 #if defined(OS_MACOSX) || defined(OS_LINUX) | 43 #if defined(OS_MACOSX) || defined(OS_LINUX) || defined(OS_FREEBSD) |
| 44 // Remove when we've finished porting the supporting classes. | 44 // Remove when we've finished porting the supporting classes. |
| 45 #include "chrome/common/temp_scaffolding_stubs.h" | 45 #include "chrome/common/temp_scaffolding_stubs.h" |
| 46 #elif defined(OS_WIN) | 46 #elif defined(OS_WIN) |
| 47 #include "chrome/browser/printing/print_view_manager.h" | 47 #include "chrome/browser/printing/print_view_manager.h" |
| 48 #endif | 48 #endif |
| 49 | 49 |
| 50 namespace gfx { | 50 namespace gfx { |
| 51 class Rect; | 51 class Rect; |
| 52 class Size; | 52 class Size; |
| 53 } | 53 } |
| (...skipping 1066 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1120 // If this tab was created from a renderer using window.open, this will be | 1120 // If this tab was created from a renderer using window.open, this will be |
| 1121 // non-NULL and represent the DOMUI of the opening renderer. | 1121 // non-NULL and represent the DOMUI of the opening renderer. |
| 1122 DOMUITypeID opener_dom_ui_type_; | 1122 DOMUITypeID opener_dom_ui_type_; |
| 1123 | 1123 |
| 1124 // --------------------------------------------------------------------------- | 1124 // --------------------------------------------------------------------------- |
| 1125 | 1125 |
| 1126 DISALLOW_COPY_AND_ASSIGN(TabContents); | 1126 DISALLOW_COPY_AND_ASSIGN(TabContents); |
| 1127 }; | 1127 }; |
| 1128 | 1128 |
| 1129 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 1129 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
| OLD | NEW |