| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_WEB_CONTENTS_H_ | 5 #ifndef CHROME_BROWSER_WEB_CONTENTS_H_ |
| 6 #define CHROME_BROWSER_WEB_CONTENTS_H_ | 6 #define CHROME_BROWSER_WEB_CONTENTS_H_ |
| 7 | 7 |
| 8 #include "base/hash_tables.h" | 8 #include "base/hash_tables.h" |
| 9 #include "chrome/browser/download/save_package.h" |
| 9 #include "chrome/browser/fav_icon_helper.h" | 10 #include "chrome/browser/fav_icon_helper.h" |
| 10 #include "chrome/browser/printing/print_view_manager.h" | 11 #include "chrome/browser/printing/print_view_manager.h" |
| 11 #include "chrome/browser/render_view_host_delegate.h" | 12 #include "chrome/browser/render_view_host_delegate.h" |
| 12 #include "chrome/browser/render_view_host_manager.h" | 13 #include "chrome/browser/render_view_host_manager.h" |
| 13 #include "chrome/browser/save_package.h" | |
| 14 #include "chrome/browser/shell_dialogs.h" | 14 #include "chrome/browser/shell_dialogs.h" |
| 15 #include "chrome/browser/tab_contents.h" | 15 #include "chrome/browser/tab_contents.h" |
| 16 #include "chrome/browser/web_app.h" | 16 #include "chrome/browser/web_app.h" |
| 17 #include "chrome/views/hwnd_view_container.h" | 17 #include "chrome/views/hwnd_view_container.h" |
| 18 | 18 |
| 19 class FindInPageController; | 19 class FindInPageController; |
| 20 class InterstitialPageDelegate; | 20 class InterstitialPageDelegate; |
| 21 class PasswordManager; | 21 class PasswordManager; |
| 22 class PluginInstaller; | 22 class PluginInstaller; |
| 23 class RenderViewHost; | 23 class RenderViewHost; |
| (...skipping 726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 750 typedef base::hash_map<int, RenderWidgetHost*> PendingWidgets; | 750 typedef base::hash_map<int, RenderWidgetHost*> PendingWidgets; |
| 751 PendingWidgets pending_widgets_; | 751 PendingWidgets pending_widgets_; |
| 752 | 752 |
| 753 // Non-null if we're displaying content for a web app. | 753 // Non-null if we're displaying content for a web app. |
| 754 scoped_refptr<WebApp> web_app_; | 754 scoped_refptr<WebApp> web_app_; |
| 755 | 755 |
| 756 DISALLOW_COPY_AND_ASSIGN(WebContents); | 756 DISALLOW_COPY_AND_ASSIGN(WebContents); |
| 757 }; | 757 }; |
| 758 | 758 |
| 759 #endif // CHROME_BROWSER_WEB_CONTENTS_H_ | 759 #endif // CHROME_BROWSER_WEB_CONTENTS_H_ |
| OLD | NEW |