| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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.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_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" |
| 78 #include "content/renderer/geolocation_dispatcher.h" | 78 #include "content/renderer/geolocation_dispatcher.h" |
| 79 #include "content/renderer/gpu/compositor_thread.h" | 79 #include "content/renderer/gpu/compositor_thread.h" |
| 80 #include "content/renderer/gpu/compositor_output_surface.h" | 80 #include "content/renderer/gpu/compositor_output_surface.h" |
| 81 #include "content/renderer/gpu/compositor_software_output_device_gl_adapter.h" | 81 #include "content/renderer/gpu/compositor_software_output_device_gl_adapter.h" |
| (...skipping 6422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6504 } | 6504 } |
| 6505 #endif | 6505 #endif |
| 6506 | 6506 |
| 6507 void RenderViewImpl::OnReleaseDisambiguationPopupDIB( | 6507 void RenderViewImpl::OnReleaseDisambiguationPopupDIB( |
| 6508 TransportDIB::Handle dib_handle) { | 6508 TransportDIB::Handle dib_handle) { |
| 6509 TransportDIB* dib = TransportDIB::CreateWithHandle(dib_handle); | 6509 TransportDIB* dib = TransportDIB::CreateWithHandle(dib_handle); |
| 6510 RenderProcess::current()->ReleaseTransportDIB(dib); | 6510 RenderProcess::current()->ReleaseTransportDIB(dib); |
| 6511 } | 6511 } |
| 6512 | 6512 |
| 6513 } // namespace content | 6513 } // namespace content |
| OLD | NEW |