| 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 CONTENT_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 5 #ifndef CONTENT_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
| 6 #define CONTENT_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 6 #define CONTENT_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/gtest_prod_util.h" | 13 #include "base/gtest_prod_util.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/observer_list.h" | 15 #include "base/observer_list.h" |
| 16 #include "base/property_bag.h" | 16 #include "base/property_bag.h" |
| 17 #include "content/browser/browser_plugin/browser_plugin_web_contents_observer.h" | 17 #include "content/browser/browser_plugin/browser_plugin_web_contents_observer.h" |
| 18 #include "content/browser/renderer_host/java/java_bridge_dispatcher_host_manager
.h" | 18 #include "content/browser/renderer_host/java/java_bridge_dispatcher_host_manager
.h" |
| 19 #include "content/browser/tab_contents/navigation_controller_impl.h" | |
| 20 #include "content/browser/tab_contents/render_view_host_manager.h" | 19 #include "content/browser/tab_contents/render_view_host_manager.h" |
| 20 #include "content/browser/web_contents/navigation_controller_impl.h" |
| 21 #include "content/common/content_export.h" | 21 #include "content/common/content_export.h" |
| 22 #include "content/public/browser/render_view_host_delegate.h" | 22 #include "content/public/browser/render_view_host_delegate.h" |
| 23 #include "content/public/browser/web_contents.h" | 23 #include "content/public/browser/web_contents.h" |
| 24 #include "content/public/common/renderer_preferences.h" | 24 #include "content/public/common/renderer_preferences.h" |
| 25 #include "net/base/load_states.h" | 25 #include "net/base/load_states.h" |
| 26 #include "ui/gfx/size.h" | 26 #include "ui/gfx/size.h" |
| 27 #include "webkit/glue/resource_type.h" | 27 #include "webkit/glue/resource_type.h" |
| 28 | 28 |
| 29 #if defined(OS_WIN) | 29 #if defined(OS_WIN) |
| 30 #include "base/win/scoped_handle.h" | 30 #include "base/win/scoped_handle.h" |
| (...skipping 658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 689 | 689 |
| 690 // Color chooser that was opened by this tab. | 690 // Color chooser that was opened by this tab. |
| 691 content::ColorChooser* color_chooser_; | 691 content::ColorChooser* color_chooser_; |
| 692 | 692 |
| 693 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 693 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 694 }; | 694 }; |
| 695 | 695 |
| 696 typedef class WebContentsImpl TabContents; | 696 typedef class WebContentsImpl TabContents; |
| 697 | 697 |
| 698 #endif // CONTENT_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 698 #endif // CONTENT_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
| OLD | NEW |