OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/scoped_ptr.h" | 11 #include "base/scoped_ptr.h" |
12 #include "chrome/browser/renderer_host/render_widget_host.h" | 12 #include "chrome/browser/renderer_host/render_widget_host.h" |
13 #include "chrome/common/notification_registrar.h" | 13 #include "chrome/common/notification_registrar.h" |
14 #include "chrome/common/page_zoom.h" | 14 #include "chrome/common/page_zoom.h" |
15 #include "chrome/common/view_types.h" | 15 #include "chrome/common/view_types.h" |
16 #include "net/base/load_states.h" | 16 #include "net/base/load_states.h" |
17 #include "webkit/api/public/WebConsoleMessage.h" | 17 #include "third_party/WebKit/WebKit/chromium/public/WebConsoleMessage.h" |
18 #include "webkit/api/public/WebDragOperation.h" | 18 #include "third_party/WebKit/WebKit/chromium/public/WebDragOperation.h" |
19 #include "webkit/api/public/WebTextDirection.h" | 19 #include "third_party/WebKit/WebKit/chromium/public/WebTextDirection.h" |
20 #include "webkit/glue/form_field_values.h" | 20 #include "webkit/glue/form_field_values.h" |
21 #include "webkit/glue/password_form_dom_manager.h" | 21 #include "webkit/glue/password_form_dom_manager.h" |
22 #include "webkit/glue/window_open_disposition.h" | 22 #include "webkit/glue/window_open_disposition.h" |
23 | 23 |
24 class FilePath; | 24 class FilePath; |
25 class ListValue; | 25 class ListValue; |
26 class RenderViewHostDelegate; | 26 class RenderViewHostDelegate; |
27 class SiteInstance; | 27 class SiteInstance; |
28 class SkBitmap; | 28 class SkBitmap; |
29 class ViewMsg_Navigate; | 29 class ViewMsg_Navigate; |
(...skipping 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
659 | 659 |
660 // True if the render view can be shut down suddenly. | 660 // True if the render view can be shut down suddenly. |
661 bool sudden_termination_allowed_; | 661 bool sudden_termination_allowed_; |
662 | 662 |
663 NotificationRegistrar registrar_; | 663 NotificationRegistrar registrar_; |
664 | 664 |
665 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); | 665 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); |
666 }; | 666 }; |
667 | 667 |
668 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 668 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
OLD | NEW |