diff options
author | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-06 15:48:32 +0000 |
---|---|---|
committer | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-06 15:48:32 +0000 |
commit | b3c41c0bfeabc14ef1ba32d757221341c0db5a95 (patch) | |
tree | 60970a3f734fc1137961d8def94b808915cff62d /content/browser/tab_contents | |
parent | 9c1662b1bcee8857245303d037a0f133e58a6079 (diff) | |
download | chromium_src-b3c41c0bfeabc14ef1ba32d757221341c0db5a95.zip chromium_src-b3c41c0bfeabc14ef1ba32d757221341c0db5a95.tar.gz chromium_src-b3c41c0bfeabc14ef1ba32d757221341c0db5a95.tar.bz2 |
Move Render(Widget|View)HostImpl to files with _impl in filename.
TBR=jam@chromium.org
BUG=98716
Review URL: https://chromiumcodereview.appspot.com/9600021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125167 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/tab_contents')
18 files changed, 21 insertions, 24 deletions
diff --git a/content/browser/tab_contents/interstitial_page_impl.cc b/content/browser/tab_contents/interstitial_page_impl.cc index 3cb3b86..4a29a22 100644 --- a/content/browser/tab_contents/interstitial_page_impl.cc +++ b/content/browser/tab_contents/interstitial_page_impl.cc @@ -13,7 +13,7 @@ #include "base/threading/thread.h" #include "base/utf_string_conversions.h" #include "content/browser/renderer_host/render_process_host_impl.h" -#include "content/browser/renderer_host/render_view_host.h" +#include "content/browser/renderer_host/render_view_host_impl.h" #include "content/browser/renderer_host/resource_dispatcher_host.h" #include "content/browser/site_instance_impl.h" #include "content/browser/tab_contents/navigation_controller_impl.h" diff --git a/content/browser/tab_contents/navigation_controller_impl.cc b/content/browser/tab_contents/navigation_controller_impl.cc index fbc0427..0073e64 100644 --- a/content/browser/tab_contents/navigation_controller_impl.cc +++ b/content/browser/tab_contents/navigation_controller_impl.cc @@ -14,7 +14,7 @@ #include "content/browser/child_process_security_policy_impl.h" #include "content/browser/in_process_webkit/dom_storage_context_impl.h" #include "content/browser/in_process_webkit/session_storage_namespace_impl.h" -#include "content/browser/renderer_host/render_view_host.h" // Temporary +#include "content/browser/renderer_host/render_view_host_impl.h" // Temporary #include "content/browser/site_instance_impl.h" #include "content/browser/tab_contents/debug_urls.h" #include "content/browser/tab_contents/interstitial_page_impl.h" diff --git a/content/browser/tab_contents/popup_menu_helper_mac.mm b/content/browser/tab_contents/popup_menu_helper_mac.mm index e505627..02e29a4 100644 --- a/content/browser/tab_contents/popup_menu_helper_mac.mm +++ b/content/browser/tab_contents/popup_menu_helper_mac.mm @@ -9,7 +9,7 @@ #import "base/mac/scoped_sending_event.h" #include "base/memory/scoped_nsobject.h" #include "base/message_loop.h" -#include "content/browser/renderer_host/render_view_host.h" +#include "content/browser/renderer_host/render_view_host_impl.h" #include "content/browser/renderer_host/render_widget_host_view_mac.h" #include "content/public/browser/notification_source.h" #include "content/public/browser/notification_types.h" diff --git a/content/browser/tab_contents/render_view_host_manager.cc b/content/browser/tab_contents/render_view_host_manager.cc index 29faba0a..3d7b9c5 100644 --- a/content/browser/tab_contents/render_view_host_manager.cc +++ b/content/browser/tab_contents/render_view_host_manager.cc @@ -9,8 +9,8 @@ #include "base/command_line.h" #include "base/logging.h" #include "content/browser/debugger/devtools_manager_impl.h" -#include "content/browser/renderer_host/render_view_host.h" #include "content/browser/renderer_host/render_view_host_factory.h" +#include "content/browser/renderer_host/render_view_host_impl.h" #include "content/browser/site_instance_impl.h" #include "content/browser/tab_contents/navigation_controller_impl.h" #include "content/browser/tab_contents/navigation_entry_impl.h" diff --git a/content/browser/tab_contents/tab_contents.cc b/content/browser/tab_contents/tab_contents.cc index b4dc70e..9d65f40 100644 --- a/content/browser/tab_contents/tab_contents.cc +++ b/content/browser/tab_contents/tab_contents.cc @@ -26,7 +26,7 @@ #include "content/browser/load_from_memory_cache_details.h" #include "content/browser/load_notification_details.h" #include "content/browser/renderer_host/render_process_host_impl.h" -#include "content/browser/renderer_host/render_view_host.h" +#include "content/browser/renderer_host/render_view_host_impl.h" #include "content/browser/renderer_host/resource_dispatcher_host.h" #include "content/browser/renderer_host/resource_request_details.h" #include "content/browser/site_instance_impl.h" diff --git a/content/browser/tab_contents/tab_contents_unittest.cc b/content/browser/tab_contents/tab_contents_unittest.cc index dce378f..57c4844 100644 --- a/content/browser/tab_contents/tab_contents_unittest.cc +++ b/content/browser/tab_contents/tab_contents_unittest.cc @@ -5,7 +5,7 @@ #include "base/logging.h" #include "base/utf_string_conversions.h" #include "content/browser/mock_content_browser_client.h" -#include "content/browser/renderer_host/render_view_host.h" +#include "content/browser/renderer_host/render_view_host_impl.h" #include "content/browser/renderer_host/test_render_view_host.h" #include "content/browser/site_instance_impl.h" #include "content/browser/tab_contents/interstitial_page_impl.h" diff --git a/content/browser/tab_contents/tab_contents_view_gtk.cc b/content/browser/tab_contents/tab_contents_view_gtk.cc index 8241ee1..83079a9 100644 --- a/content/browser/tab_contents/tab_contents_view_gtk.cc +++ b/content/browser/tab_contents/tab_contents_view_gtk.cc @@ -13,8 +13,8 @@ #include "base/string_util.h" #include "base/utf_string_conversions.h" #include "build/build_config.h" -#include "content/browser/renderer_host/render_view_host.h" #include "content/browser/renderer_host/render_view_host_factory.h" +#include "content/browser/renderer_host/render_view_host_impl.h" #include "content/browser/renderer_host/render_widget_host_view_gtk.h" #include "content/browser/tab_contents/interstitial_page_impl.h" #include "content/browser/tab_contents/tab_contents.h" diff --git a/content/browser/tab_contents/tab_contents_view_helper.cc b/content/browser/tab_contents/tab_contents_view_helper.cc index 69c21c1..d21a8bd 100644 --- a/content/browser/tab_contents/tab_contents_view_helper.cc +++ b/content/browser/tab_contents/tab_contents_view_helper.cc @@ -4,8 +4,7 @@ #include "content/browser/tab_contents/tab_contents_view_helper.h" -#include "content/browser/renderer_host/render_view_host.h" -#include "content/browser/renderer_host/render_widget_host.h" +#include "content/browser/renderer_host/render_view_host_impl.h" #include "content/browser/tab_contents/tab_contents.h" #include "content/common/view_messages.h" #include "content/port/browser/render_widget_host_view_port.h" diff --git a/content/browser/tab_contents/tab_contents_view_win.cc b/content/browser/tab_contents/tab_contents_view_win.cc index 6e0cd41..91d0e5e 100644 --- a/content/browser/tab_contents/tab_contents_view_win.cc +++ b/content/browser/tab_contents/tab_contents_view_win.cc @@ -4,8 +4,8 @@ #include "content/browser/tab_contents/tab_contents_view_win.h" -#include "content/browser/renderer_host/render_view_host.h" #include "content/browser/renderer_host/render_view_host_factory.h" +#include "content/browser/renderer_host/render_view_host_impl.h" #include "content/browser/renderer_host/render_widget_host_view_win.h" #include "content/browser/tab_contents/interstitial_page_impl.h" #include "content/browser/tab_contents/tab_contents.h" diff --git a/content/browser/tab_contents/test_tab_contents.cc b/content/browser/tab_contents/test_tab_contents.cc index f788163..a29f716 100644 --- a/content/browser/tab_contents/test_tab_contents.cc +++ b/content/browser/tab_contents/test_tab_contents.cc @@ -8,7 +8,7 @@ #include "content/browser/browser_url_handler.h" #include "content/browser/renderer_host/mock_render_process_host.h" -#include "content/browser/renderer_host/render_view_host.h" +#include "content/browser/renderer_host/render_view_host_impl.h" #include "content/browser/renderer_host/test_render_view_host.h" #include "content/browser/site_instance_impl.h" #include "content/browser/tab_contents/navigation_entry_impl.h" diff --git a/content/browser/tab_contents/web_contents_view_android.cc b/content/browser/tab_contents/web_contents_view_android.cc index 5626cb7..4c26f73 100644 --- a/content/browser/tab_contents/web_contents_view_android.cc +++ b/content/browser/tab_contents/web_contents_view_android.cc @@ -5,8 +5,7 @@ #include "content/browser/tab_contents/web_contents_view_android.h" #include "base/logging.h" -#include "content/browser/renderer_host/render_view_host.h" -#include "content/browser/renderer_host/render_widget_host.h" +#include "content/browser/renderer_host/render_view_host_impl.h" WebContentsViewAndroid::WebContentsViewAndroid( content::WebContents* web_contents) diff --git a/content/browser/tab_contents/web_contents_view_mac.mm b/content/browser/tab_contents/web_contents_view_mac.mm index 4fb3afe..419f297 100644 --- a/content/browser/tab_contents/web_contents_view_mac.mm +++ b/content/browser/tab_contents/web_contents_view_mac.mm @@ -10,9 +10,8 @@ #import "base/mac/scoped_sending_event.h" #import "base/message_pump_mac.h" -#include "content/browser/renderer_host/render_view_host.h" #include "content/browser/renderer_host/render_view_host_factory.h" -#include "content/browser/renderer_host/render_widget_host.h" +#include "content/browser/renderer_host/render_view_host_impl.h" #include "content/browser/renderer_host/render_widget_host_view_mac.h" #include "content/browser/tab_contents/popup_menu_helper_mac.h" #include "content/browser/tab_contents/tab_contents.h" diff --git a/content/browser/tab_contents/web_drag_dest_gtk.cc b/content/browser/tab_contents/web_drag_dest_gtk.cc index deac93c..27022c6 100644 --- a/content/browser/tab_contents/web_drag_dest_gtk.cc +++ b/content/browser/tab_contents/web_drag_dest_gtk.cc @@ -10,7 +10,7 @@ #include "base/file_path.h" #include "base/message_loop.h" #include "base/utf_string_conversions.h" -#include "content/browser/renderer_host/render_view_host.h" +#include "content/browser/renderer_host/render_view_host_impl.h" #include "content/browser/tab_contents/drag_utils_gtk.h" #include "content/browser/tab_contents/tab_contents.h" #include "content/browser/tab_contents/web_drag_dest_delegate.h" diff --git a/content/browser/tab_contents/web_drag_dest_mac.mm b/content/browser/tab_contents/web_drag_dest_mac.mm index 53e0ecc..787279f 100644 --- a/content/browser/tab_contents/web_drag_dest_mac.mm +++ b/content/browser/tab_contents/web_drag_dest_mac.mm @@ -1,11 +1,11 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #import "content/browser/tab_contents/web_drag_dest_mac.h" #include "base/sys_string_conversions.h" -#include "content/browser/renderer_host/render_view_host.h" +#include "content/browser/renderer_host/render_view_host_impl.h" #include "content/browser/tab_contents/tab_contents.h" #include "content/browser/tab_contents/web_drag_dest_delegate.h" #import "third_party/mozilla/NSPasteboard+Utils.h" diff --git a/content/browser/tab_contents/web_drag_dest_win.cc b/content/browser/tab_contents/web_drag_dest_win.cc index 441ec76..7c23ba3 100644 --- a/content/browser/tab_contents/web_drag_dest_win.cc +++ b/content/browser/tab_contents/web_drag_dest_win.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -7,7 +7,7 @@ #include <windows.h> #include <shlobj.h> -#include "content/browser/renderer_host/render_view_host.h" +#include "content/browser/renderer_host/render_view_host_impl.h" #include "content/browser/tab_contents/web_drag_dest_delegate.h" #include "content/browser/tab_contents/web_drag_utils_win.h" #include "content/public/browser/web_contents.h" diff --git a/content/browser/tab_contents/web_drag_source_gtk.cc b/content/browser/tab_contents/web_drag_source_gtk.cc index 2ac997f..f750db1 100644 --- a/content/browser/tab_contents/web_drag_source_gtk.cc +++ b/content/browser/tab_contents/web_drag_source_gtk.cc @@ -12,7 +12,7 @@ #include "base/utf_string_conversions.h" #include "content/browser/download/drag_download_file.h" #include "content/browser/download/drag_download_util.h" -#include "content/browser/renderer_host/render_view_host.h" +#include "content/browser/renderer_host/render_view_host_impl.h" #include "content/browser/tab_contents/drag_utils_gtk.h" #include "content/browser/tab_contents/tab_contents.h" #include "content/public/browser/content_browser_client.h" diff --git a/content/browser/tab_contents/web_drag_source_mac.mm b/content/browser/tab_contents/web_drag_source_mac.mm index 486b766..dd78e12 100644 --- a/content/browser/tab_contents/web_drag_source_mac.mm +++ b/content/browser/tab_contents/web_drag_source_mac.mm @@ -17,7 +17,7 @@ #include "content/browser/browser_thread_impl.h" #include "content/browser/download/drag_download_file.h" #include "content/browser/download/drag_download_util.h" -#include "content/browser/renderer_host/render_view_host.h" +#include "content/browser/renderer_host/render_view_host_impl.h" #include "content/browser/tab_contents/tab_contents.h" #include "content/public/browser/content_browser_client.h" #include "content/public/common/content_client.h" diff --git a/content/browser/tab_contents/web_drag_source_win.cc b/content/browser/tab_contents/web_drag_source_win.cc index 55eb10f..82b7f29 100644 --- a/content/browser/tab_contents/web_drag_source_win.cc +++ b/content/browser/tab_contents/web_drag_source_win.cc @@ -1,11 +1,11 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "content/browser/tab_contents/web_drag_source_win.h" #include "base/bind.h" -#include "content/browser/renderer_host/render_view_host.h" +#include "content/browser/renderer_host/render_view_host_impl.h" #include "content/browser/tab_contents/web_drag_utils_win.h" #include "content/public/browser/browser_thread.h" #include "content/public/browser/notification_source.h" |