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 <string> | 8 #include <string> |
9 #include <queue> | 9 #include <queue> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/file_path.h" | 13 #include "base/file_path.h" |
14 #include "base/gfx/point.h" | 14 #include "base/gfx/point.h" |
15 #include "base/gfx/rect.h" | 15 #include "base/gfx/rect.h" |
16 #include "base/id_map.h" | 16 #include "base/id_map.h" |
17 #include "base/shared_memory.h" | 17 #include "base/shared_memory.h" |
18 #include "base/timer.h" | 18 #include "base/timer.h" |
19 #include "base/values.h" | 19 #include "base/values.h" |
20 #include "build/build_config.h" | 20 #include "build/build_config.h" |
21 #include "chrome/renderer/automation/dom_automation_controller.h" | 21 #include "chrome/renderer/automation/dom_automation_controller.h" |
22 #include "chrome/renderer/dom_ui_bindings.h" | 22 #include "chrome/renderer/dom_ui_bindings.h" |
23 #include "chrome/renderer/external_host_bindings.h" | 23 #include "chrome/renderer/external_host_bindings.h" |
24 #include "chrome/renderer/render_widget.h" | 24 #include "chrome/renderer/render_widget.h" |
25 #include "skia/include/SkBitmap.h" | 25 #include "third_party/skia/include/core/SkBitmap.h" |
26 #include "testing/gtest/include/gtest/gtest_prod.h" | 26 #include "testing/gtest/include/gtest/gtest_prod.h" |
27 #include "webkit/api/public/WebConsoleMessage.h" | 27 #include "webkit/api/public/WebConsoleMessage.h" |
28 #include "webkit/glue/dom_serializer_delegate.h" | 28 #include "webkit/glue/dom_serializer_delegate.h" |
29 #include "webkit/glue/form_data.h" | 29 #include "webkit/glue/form_data.h" |
30 #include "webkit/glue/password_form_dom_manager.h" | 30 #include "webkit/glue/password_form_dom_manager.h" |
31 #include "webkit/glue/webaccessibilitymanager.h" | 31 #include "webkit/glue/webaccessibilitymanager.h" |
32 #include "webkit/glue/webview_delegate.h" | 32 #include "webkit/glue/webview_delegate.h" |
33 #include "webkit/glue/webview.h" | 33 #include "webkit/glue/webview.h" |
34 | 34 |
35 #if defined(OS_WIN) | 35 #if defined(OS_WIN) |
(...skipping 754 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
790 scoped_refptr<AudioMessageFilter> audio_message_filter_; | 790 scoped_refptr<AudioMessageFilter> audio_message_filter_; |
791 | 791 |
792 // The currently selected text. This is currently only updated on Linux, where | 792 // The currently selected text. This is currently only updated on Linux, where |
793 // it's for the selection clipboard. | 793 // it's for the selection clipboard. |
794 std::string selection_text_; | 794 std::string selection_text_; |
795 | 795 |
796 DISALLOW_COPY_AND_ASSIGN(RenderView); | 796 DISALLOW_COPY_AND_ASSIGN(RenderView); |
797 }; | 797 }; |
798 | 798 |
799 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 799 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
OLD | NEW |