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

Side by Side Diff: content/browser/renderer_host/render_view_host_impl.cc

Issue 264033002: Move some interfaces from content/port to internal content since they're not referenced in content/… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: sync Created 6 years, 7 months 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 | Annotate | Revision Log
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/browser/renderer_host/render_view_host_impl.h" 5 #include "content/browser/renderer_host/render_view_host_impl.h"
6 6
7 #include <set> 7 #include <set>
8 #include <string> 8 #include <string>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 21 matching lines...) Expand all
32 #include "content/browser/gpu/gpu_data_manager_impl.h" 32 #include "content/browser/gpu/gpu_data_manager_impl.h"
33 #include "content/browser/gpu/gpu_process_host.h" 33 #include "content/browser/gpu/gpu_process_host.h"
34 #include "content/browser/gpu/gpu_surface_tracker.h" 34 #include "content/browser/gpu/gpu_surface_tracker.h"
35 #include "content/browser/host_zoom_map_impl.h" 35 #include "content/browser/host_zoom_map_impl.h"
36 #include "content/browser/loader/resource_dispatcher_host_impl.h" 36 #include "content/browser/loader/resource_dispatcher_host_impl.h"
37 #include "content/browser/renderer_host/dip_util.h" 37 #include "content/browser/renderer_host/dip_util.h"
38 #include "content/browser/renderer_host/input/timeout_monitor.h" 38 #include "content/browser/renderer_host/input/timeout_monitor.h"
39 #include "content/browser/renderer_host/media/audio_renderer_host.h" 39 #include "content/browser/renderer_host/media/audio_renderer_host.h"
40 #include "content/browser/renderer_host/render_process_host_impl.h" 40 #include "content/browser/renderer_host/render_process_host_impl.h"
41 #include "content/browser/renderer_host/render_view_host_delegate.h" 41 #include "content/browser/renderer_host/render_view_host_delegate.h"
42 #include "content/browser/renderer_host/render_view_host_delegate_view.h"
42 #include "content/browser/renderer_host/render_widget_host_view_base.h" 43 #include "content/browser/renderer_host/render_widget_host_view_base.h"
43 #include "content/common/accessibility_messages.h" 44 #include "content/common/accessibility_messages.h"
44 #include "content/common/browser_plugin/browser_plugin_messages.h" 45 #include "content/common/browser_plugin/browser_plugin_messages.h"
45 #include "content/common/content_switches_internal.h" 46 #include "content/common/content_switches_internal.h"
46 #include "content/common/drag_messages.h" 47 #include "content/common/drag_messages.h"
47 #include "content/common/frame_messages.h" 48 #include "content/common/frame_messages.h"
48 #include "content/common/input_messages.h" 49 #include "content/common/input_messages.h"
49 #include "content/common/inter_process_time_ticks_converter.h" 50 #include "content/common/inter_process_time_ticks_converter.h"
50 #include "content/common/mojo/mojo_service_names.h" 51 #include "content/common/mojo/mojo_service_names.h"
51 #include "content/common/speech_recognition_messages.h" 52 #include "content/common/speech_recognition_messages.h"
52 #include "content/common/swapped_out_messages.h" 53 #include "content/common/swapped_out_messages.h"
53 #include "content/common/view_messages.h" 54 #include "content/common/view_messages.h"
54 #include "content/common/web_ui_setup.mojom.h" 55 #include "content/common/web_ui_setup.mojom.h"
55 #include "content/port/browser/render_view_host_delegate_view.h"
56 #include "content/public/browser/ax_event_notification_details.h" 56 #include "content/public/browser/ax_event_notification_details.h"
57 #include "content/public/browser/browser_accessibility_state.h" 57 #include "content/public/browser/browser_accessibility_state.h"
58 #include "content/public/browser/browser_context.h" 58 #include "content/public/browser/browser_context.h"
59 #include "content/public/browser/browser_message_filter.h" 59 #include "content/public/browser/browser_message_filter.h"
60 #include "content/public/browser/content_browser_client.h" 60 #include "content/public/browser/content_browser_client.h"
61 #include "content/public/browser/native_web_keyboard_event.h" 61 #include "content/public/browser/native_web_keyboard_event.h"
62 #include "content/public/browser/notification_details.h" 62 #include "content/public/browser/notification_details.h"
63 #include "content/public/browser/notification_service.h" 63 #include "content/public/browser/notification_service.h"
64 #include "content/public/browser/notification_types.h" 64 #include "content/public/browser/notification_types.h"
65 #include "content/public/browser/render_frame_host.h" 65 #include "content/public/browser/render_frame_host.h"
(...skipping 1655 matching lines...) Expand 10 before | Expand all | Expand 10 after
1721 return true; 1721 return true;
1722 } 1722 }
1723 1723
1724 void RenderViewHostImpl::AttachToFrameTree() { 1724 void RenderViewHostImpl::AttachToFrameTree() {
1725 FrameTree* frame_tree = delegate_->GetFrameTree(); 1725 FrameTree* frame_tree = delegate_->GetFrameTree();
1726 1726
1727 frame_tree->ResetForMainFrameSwap(); 1727 frame_tree->ResetForMainFrameSwap();
1728 } 1728 }
1729 1729
1730 } // namespace content 1730 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698