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 #include "content/renderer/render_view_impl.h" | 5 #include "content/renderer/render_view_impl.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <cmath> | 8 #include <cmath> |
9 | 9 |
10 #include "base/auto_reset.h" | 10 #include "base/auto_reset.h" |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" | 42 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" |
43 #include "content/common/java_bridge_messages.h" | 43 #include "content/common/java_bridge_messages.h" |
44 #include "content/common/pepper_messages.h" | 44 #include "content/common/pepper_messages.h" |
45 #include "content/common/pepper_plugin_registry.h" | 45 #include "content/common/pepper_plugin_registry.h" |
46 #include "content/common/quota_dispatcher.h" | 46 #include "content/common/quota_dispatcher.h" |
47 #include "content/common/request_extra_data.h" | 47 #include "content/common/request_extra_data.h" |
48 #include "content/common/socket_stream_handle_data.h" | 48 #include "content/common/socket_stream_handle_data.h" |
49 #include "content/common/ssl_status_serialization.h" | 49 #include "content/common/ssl_status_serialization.h" |
50 #include "content/common/view_messages.h" | 50 #include "content/common/view_messages.h" |
51 #include "content/common/webmessageportchannel_impl.h" | 51 #include "content/common/webmessageportchannel_impl.h" |
| 52 #include "content/public/common/accessibility_mode.h" |
52 #include "content/public/common/bindings_policy.h" | 53 #include "content/public/common/bindings_policy.h" |
53 #include "content/public/common/content_client.h" | 54 #include "content/public/common/content_client.h" |
54 #include "content/public/common/content_constants.h" | 55 #include "content/public/common/content_constants.h" |
55 #include "content/public/common/content_switches.h" | 56 #include "content/public/common/content_switches.h" |
56 #include "content/public/common/context_menu_params.h" | 57 #include "content/public/common/context_menu_params.h" |
57 #include "content/public/common/file_chooser_params.h" | 58 #include "content/public/common/file_chooser_params.h" |
58 #include "content/public/common/ssl_status.h" | 59 #include "content/public/common/ssl_status.h" |
59 #include "content/public/common/three_d_api_types.h" | 60 #include "content/public/common/three_d_api_types.h" |
60 #include "content/public/common/url_constants.h" | 61 #include "content/public/common/url_constants.h" |
61 #include "content/public/renderer/content_renderer_client.h" | 62 #include "content/public/renderer/content_renderer_client.h" |
(...skipping 6642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6704 TransportDIB* dib = TransportDIB::CreateWithHandle(dib_handle); | 6705 TransportDIB* dib = TransportDIB::CreateWithHandle(dib_handle); |
6705 RenderProcess::current()->ReleaseTransportDIB(dib); | 6706 RenderProcess::current()->ReleaseTransportDIB(dib); |
6706 } | 6707 } |
6707 | 6708 |
6708 void RenderViewImpl::DidCommitCompositorFrame() { | 6709 void RenderViewImpl::DidCommitCompositorFrame() { |
6709 RenderWidget::DidCommitCompositorFrame(); | 6710 RenderWidget::DidCommitCompositorFrame(); |
6710 FOR_EACH_OBSERVER(RenderViewObserver, observers_, DidCommitCompositorFrame()); | 6711 FOR_EACH_OBSERVER(RenderViewObserver, observers_, DidCommitCompositorFrame()); |
6711 } | 6712 } |
6712 | 6713 |
6713 } // namespace content | 6714 } // namespace content |
OLD | NEW |