Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(550)

Side by Side Diff: content/renderer/render_view_impl.cc

Issue 11630004: DevTools: rename debugger/ to devtools/, move DevTools files into content/renderer/devtools. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: For landing Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/renderer/render_thread_impl.cc ('k') | tools/code_coverage/coverage_posix.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « content/renderer/render_thread_impl.cc ('k') | tools/code_coverage/coverage_posix.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698