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/bind.h" | 10 #include "base/bind.h" |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 #include "content/public/common/ssl_status.h" | 57 #include "content/public/common/ssl_status.h" |
58 #include "content/public/common/three_d_api_types.h" | 58 #include "content/public/common/three_d_api_types.h" |
59 #include "content/public/common/url_constants.h" | 59 #include "content/public/common/url_constants.h" |
60 #include "content/public/renderer/content_renderer_client.h" | 60 #include "content/public/renderer/content_renderer_client.h" |
61 #include "content/public/renderer/context_menu_client.h" | 61 #include "content/public/renderer/context_menu_client.h" |
62 #include "content/public/renderer/document_state.h" | 62 #include "content/public/renderer/document_state.h" |
63 #include "content/public/renderer/navigation_state.h" | 63 #include "content/public/renderer/navigation_state.h" |
64 #include "content/public/renderer/password_form_conversion_utils.h" | 64 #include "content/public/renderer/password_form_conversion_utils.h" |
65 #include "content/public/renderer/render_view_observer.h" | 65 #include "content/public/renderer/render_view_observer.h" |
66 #include "content/public/renderer/render_view_visitor.h" | 66 #include "content/public/renderer/render_view_visitor.h" |
67 #include "content/renderer/browser_plugin/browser_plugin.h" | 67 #include "content/renderer/browser_plugin/browser_plugin_impl.h" |
68 #include "content/renderer/browser_plugin/browser_plugin_manager.h" | 68 #include "content/renderer/browser_plugin/browser_plugin_manager.h" |
69 #include "content/renderer/browser_plugin/browser_plugin_manager_impl.h" | 69 #include "content/renderer/browser_plugin/browser_plugin_manager_impl.h" |
70 #include "content/renderer/device_orientation_dispatcher.h" | 70 #include "content/renderer/device_orientation_dispatcher.h" |
71 #include "content/renderer/devtools/devtools_agent.h" | 71 #include "content/renderer/devtools/devtools_agent.h" |
72 #include "content/renderer/disambiguation_popup_helper.h" | 72 #include "content/renderer/disambiguation_popup_helper.h" |
73 #include "content/renderer/dom_automation_controller.h" | 73 #include "content/renderer/dom_automation_controller.h" |
74 #include "content/renderer/dom_storage/webstoragenamespace_impl.h" | 74 #include "content/renderer/dom_storage/webstoragenamespace_impl.h" |
75 #include "content/renderer/do_not_track_bindings.h" | 75 #include "content/renderer/do_not_track_bindings.h" |
76 #include "content/renderer/external_popup_menu.h" | 76 #include "content/renderer/external_popup_menu.h" |
77 #include "content/renderer/favicon_helper.h" | 77 #include "content/renderer/favicon_helper.h" |
(...skipping 6428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6506 } | 6506 } |
6507 #endif | 6507 #endif |
6508 | 6508 |
6509 void RenderViewImpl::OnReleaseDisambiguationPopupDIB( | 6509 void RenderViewImpl::OnReleaseDisambiguationPopupDIB( |
6510 TransportDIB::Handle dib_handle) { | 6510 TransportDIB::Handle dib_handle) { |
6511 TransportDIB* dib = TransportDIB::CreateWithHandle(dib_handle); | 6511 TransportDIB* dib = TransportDIB::CreateWithHandle(dib_handle); |
6512 RenderProcess::current()->ReleaseTransportDIB(dib); | 6512 RenderProcess::current()->ReleaseTransportDIB(dib); |
6513 } | 6513 } |
6514 | 6514 |
6515 } // namespace content | 6515 } // namespace content |
OLD | NEW |