OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_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/renderer_host/render_widget_host.h" | 17 #include "content/browser/renderer_host/render_widget_host.h" |
18 #include "content/common/content_export.h" | 18 #include "content/common/content_export.h" |
19 #include "content/common/window_container_type.h" | 19 #include "content/public/common/window_container_type.h" |
20 #include "net/base/load_states.h" | 20 #include "net/base/load_states.h" |
21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebConsoleMessage.h" | 21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebConsoleMessage.h" |
22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDragOperation.h" | 22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDragOperation.h" |
23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" | 23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" |
24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" | 24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" |
25 #include "webkit/glue/webaccessibility.h" | 25 #include "webkit/glue/webaccessibility.h" |
26 #include "webkit/glue/window_open_disposition.h" | 26 #include "webkit/glue/window_open_disposition.h" |
27 | 27 |
28 class ChildProcessSecurityPolicy; | 28 class ChildProcessSecurityPolicy; |
29 struct DesktopNotificationHostMsg_Show_Params; | 29 struct DesktopNotificationHostMsg_Show_Params; |
(...skipping 602 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
632 // The termination status of the last render view that terminated. | 632 // The termination status of the last render view that terminated. |
633 base::TerminationStatus render_view_termination_status_; | 633 base::TerminationStatus render_view_termination_status_; |
634 | 634 |
635 // A list of observers that filter messages. Weak references. | 635 // A list of observers that filter messages. Weak references. |
636 ObserverList<RenderViewHostObserver> observers_; | 636 ObserverList<RenderViewHostObserver> observers_; |
637 | 637 |
638 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); | 638 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); |
639 }; | 639 }; |
640 | 640 |
641 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 641 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
OLD | NEW |