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 #pragma once | 7 #pragma once |
8 | 8 |
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/in_process_webkit/session_storage_namespace_impl.h" | |
18 #include "content/browser/renderer_host/render_widget_host_impl.h" | 17 #include "content/browser/renderer_host/render_widget_host_impl.h" |
19 #include "content/browser/site_instance_impl.h" | 18 #include "content/browser/site_instance_impl.h" |
20 #include "content/public/browser/notification_observer.h" | 19 #include "content/public/browser/notification_observer.h" |
21 #include "content/public/browser/render_view_host.h" | 20 #include "content/public/browser/render_view_host.h" |
22 #include "content/public/common/window_container_type.h" | 21 #include "content/public/common/window_container_type.h" |
23 #include "net/base/load_states.h" | 22 #include "net/base/load_states.h" |
24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebConsoleMessage.h" | 23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebConsoleMessage.h" |
25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" | 24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" |
26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" | 25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" |
27 #include "ui/base/javascript_message_type.h" | 26 #include "ui/base/javascript_message_type.h" |
(...skipping 23 matching lines...) Expand all Loading... |
51 namespace ui { | 50 namespace ui { |
52 class Range; | 51 class Range; |
53 } | 52 } |
54 | 53 |
55 namespace webkit_glue { | 54 namespace webkit_glue { |
56 struct WebAccessibility; | 55 struct WebAccessibility; |
57 } | 56 } |
58 | 57 |
59 namespace content { | 58 namespace content { |
60 | 59 |
| 60 class SessionStorageNamespace; |
61 class RenderViewHostObserver; | 61 class RenderViewHostObserver; |
62 struct FileChooserParams; | 62 struct FileChooserParams; |
63 struct ContextMenuParams; | 63 struct ContextMenuParams; |
64 struct Referrer; | 64 struct Referrer; |
65 struct SelectedFileInfo; | 65 struct SelectedFileInfo; |
66 struct ShowDesktopNotificationHostMsgParams; | 66 struct ShowDesktopNotificationHostMsgParams; |
67 | 67 |
68 // NotificationObserver used to listen for EXECUTE_JAVASCRIPT_RESULT | 68 // NotificationObserver used to listen for EXECUTE_JAVASCRIPT_RESULT |
69 // notifications. | 69 // notifications. |
70 class ExecuteNotificationObserver : public NotificationObserver { | 70 class ExecuteNotificationObserver : public NotificationObserver { |
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
628 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 628 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
629 }; | 629 }; |
630 | 630 |
631 #if defined(COMPILER_MSVC) | 631 #if defined(COMPILER_MSVC) |
632 #pragma warning(pop) | 632 #pragma warning(pop) |
633 #endif | 633 #endif |
634 | 634 |
635 } // namespace content | 635 } // namespace content |
636 | 636 |
637 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 637 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |