| 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_RENDERER_RENDER_VIEW_H_ | 5 #ifndef CHROME_RENDERER_RENDER_VIEW_H_ |
| 6 #define CHROME_RENDERER_RENDER_VIEW_H_ | 6 #define CHROME_RENDERER_RENDER_VIEW_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #include "chrome/common/view_types.h" | 28 #include "chrome/common/view_types.h" |
| 29 #include "chrome/renderer/automation/dom_automation_controller.h" | 29 #include "chrome/renderer/automation/dom_automation_controller.h" |
| 30 #include "chrome/renderer/dom_ui_bindings.h" | 30 #include "chrome/renderer/dom_ui_bindings.h" |
| 31 #include "chrome/renderer/extensions/extension_process_bindings.h" | 31 #include "chrome/renderer/extensions/extension_process_bindings.h" |
| 32 #include "chrome/renderer/external_host_bindings.h" | 32 #include "chrome/renderer/external_host_bindings.h" |
| 33 #include "chrome/renderer/notification_provider.h" | 33 #include "chrome/renderer/notification_provider.h" |
| 34 #include "chrome/renderer/render_widget.h" | 34 #include "chrome/renderer/render_widget.h" |
| 35 #include "chrome/renderer/render_view_visitor.h" | 35 #include "chrome/renderer/render_view_visitor.h" |
| 36 #include "third_party/skia/include/core/SkBitmap.h" | 36 #include "third_party/skia/include/core/SkBitmap.h" |
| 37 #include "testing/gtest/include/gtest/gtest_prod.h" | 37 #include "testing/gtest/include/gtest/gtest_prod.h" |
| 38 #include "webkit/api/public/WebConsoleMessage.h" | 38 #include "third_party/WebKit/WebKit/chromium/public/WebConsoleMessage.h" |
| 39 #include "webkit/api/public/WebContextMenuData.h" | 39 #include "third_party/WebKit/WebKit/chromium/public/WebContextMenuData.h" |
| 40 #include "webkit/api/public/WebFrameClient.h" | 40 #include "third_party/WebKit/WebKit/chromium/public/WebFrameClient.h" |
| 41 #include "webkit/api/public/WebMediaPlayerAction.h" | 41 #include "third_party/WebKit/WebKit/chromium/public/WebMediaPlayerAction.h" |
| 42 #include "webkit/api/public/WebNode.h" | 42 #include "third_party/WebKit/WebKit/chromium/public/WebNode.h" |
| 43 #include "webkit/api/public/WebTextDirection.h" | 43 #include "third_party/WebKit/WebKit/chromium/public/WebTextDirection.h" |
| 44 #include "webkit/api/public/WebView.h" | 44 #include "third_party/WebKit/WebKit/chromium/public/WebView.h" |
| 45 #include "webkit/api/public/WebViewClient.h" | 45 #include "third_party/WebKit/WebKit/chromium/public/WebViewClient.h" |
| 46 #include "webkit/glue/dom_serializer_delegate.h" | 46 #include "webkit/glue/dom_serializer_delegate.h" |
| 47 #include "webkit/glue/form_data.h" | 47 #include "webkit/glue/form_data.h" |
| 48 #include "webkit/glue/image_resource_fetcher.h" | 48 #include "webkit/glue/image_resource_fetcher.h" |
| 49 #include "webkit/glue/password_form_dom_manager.h" | 49 #include "webkit/glue/password_form_dom_manager.h" |
| 50 #include "webkit/glue/webaccessibility.h" | 50 #include "webkit/glue/webaccessibility.h" |
| 51 #include "webkit/glue/webplugin_page_delegate.h" | 51 #include "webkit/glue/webplugin_page_delegate.h" |
| 52 #include "webkit/glue/webpreferences.h" | 52 #include "webkit/glue/webpreferences.h" |
| 53 | 53 |
| 54 #if defined(OS_WIN) | 54 #if defined(OS_WIN) |
| 55 // RenderView is a diamond-shaped hierarchy, with WebWidgetClient at the root. | 55 // RenderView is a diamond-shaped hierarchy, with WebWidgetClient at the root. |
| (...skipping 938 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 994 // ImageResourceFetchers schedule via DownloadImage. | 994 // ImageResourceFetchers schedule via DownloadImage. |
| 995 typedef std::set<webkit_glue::ImageResourceFetcher*> ImageResourceFetcherSet; | 995 typedef std::set<webkit_glue::ImageResourceFetcher*> ImageResourceFetcherSet; |
| 996 ImageResourceFetcherSet image_fetchers_; | 996 ImageResourceFetcherSet image_fetchers_; |
| 997 | 997 |
| 998 typedef std::map<WebKit::WebView*, RenderView*> ViewMap; | 998 typedef std::map<WebKit::WebView*, RenderView*> ViewMap; |
| 999 | 999 |
| 1000 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1000 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 1001 }; | 1001 }; |
| 1002 | 1002 |
| 1003 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 1003 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |