| 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_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/logging.h" | 13 #include "base/logging.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/process_util.h" | 16 #include "base/process_util.h" |
| 17 #include "content/browser/renderer_host/render_widget_host_impl.h" | 17 #include "content/browser/renderer_host/render_widget_host_impl.h" |
| 18 #include "content/browser/site_instance_impl.h" | 18 #include "content/browser/site_instance_impl.h" |
| 19 #include "content/common/accessibility_node_data.h" | 19 #include "content/common/accessibility_node_data.h" |
| 20 #include "content/common/drag_event_source_info.h" | 20 #include "content/common/drag_event_source_info.h" |
| 21 #include "content/public/browser/notification_observer.h" | 21 #include "content/public/browser/notification_observer.h" |
| 22 #include "content/public/browser/render_view_host.h" | 22 #include "content/public/browser/render_view_host.h" |
| 23 #include "content/public/common/javascript_message_type.h" | 23 #include "content/public/common/javascript_message_type.h" |
| 24 #include "content/public/common/window_container_type.h" | 24 #include "content/public/common/window_container_type.h" |
| 25 #include "net/base/load_states.h" | 25 #include "net/base/load_states.h" |
| 26 #include "third_party/skia/include/core/SkColor.h" | 26 #include "third_party/skia/include/core/SkColor.h" |
| 27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebConsoleMessage.h" | 27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebConsoleMessage.h" |
| 28 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" | 28 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" |
| 29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" | 29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" |
| 30 #include "webkit/glue/window_open_disposition.h" | 30 #include "ui/base/window_open_disposition.h" |
| 31 | 31 |
| 32 class SkBitmap; | 32 class SkBitmap; |
| 33 class ViewMsg_Navigate; | 33 class ViewMsg_Navigate; |
| 34 struct AccessibilityHostMsg_NotificationParams; | 34 struct AccessibilityHostMsg_NotificationParams; |
| 35 struct MediaPlayerAction; | 35 struct MediaPlayerAction; |
| 36 struct ViewHostMsg_CreateWindow_Params; | 36 struct ViewHostMsg_CreateWindow_Params; |
| 37 struct ViewHostMsg_DidFailProvisionalLoadWithError_Params; | 37 struct ViewHostMsg_DidFailProvisionalLoadWithError_Params; |
| 38 struct ViewHostMsg_OpenURL_Params; | 38 struct ViewHostMsg_OpenURL_Params; |
| 39 struct ViewHostMsg_ShowPopup_Params; | 39 struct ViewHostMsg_ShowPopup_Params; |
| 40 struct ViewMsg_Navigate_Params; | 40 struct ViewMsg_Navigate_Params; |
| (...skipping 668 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 709 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 709 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
| 710 }; | 710 }; |
| 711 | 711 |
| 712 #if defined(COMPILER_MSVC) | 712 #if defined(COMPILER_MSVC) |
| 713 #pragma warning(pop) | 713 #pragma warning(pop) |
| 714 #endif | 714 #endif |
| 715 | 715 |
| 716 } // namespace content | 716 } // namespace content |
| 717 | 717 |
| 718 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 718 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| OLD | NEW |