diff options
author | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-06 15:44:33 +0000 |
---|---|---|
committer | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-06 15:44:33 +0000 |
commit | 9c1662b1bcee8857245303d037a0f133e58a6079 (patch) | |
tree | 3a614dd4dc0d94cef4fd7a7a03b22b0133730f8b /chrome/browser/printing/print_view_manager.cc | |
parent | eddc251ab1b451c20dbe81401268391edd79e974 (diff) | |
download | chromium_src-9c1662b1bcee8857245303d037a0f133e58a6079.zip chromium_src-9c1662b1bcee8857245303d037a0f133e58a6079.tar.gz chromium_src-9c1662b1bcee8857245303d037a0f133e58a6079.tar.bz2 |
Move RenderWidgetHost and RenderViewHost interfaces to their own files.
This also finishes breaking the Chrome dependency on RenderWidgetHostImpl and RenderViewHostImpl.
TBR=jam@chromium.org
BUG=98716
Review URL: https://chromiumcodereview.appspot.com/9599011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125166 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/printing/print_view_manager.cc')
-rw-r--r-- | chrome/browser/printing/print_view_manager.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/chrome/browser/printing/print_view_manager.cc b/chrome/browser/printing/print_view_manager.cc index 3fcab11..10e7d1c 100644 --- a/chrome/browser/printing/print_view_manager.cc +++ b/chrome/browser/printing/print_view_manager.cc @@ -9,21 +9,22 @@ #include "base/bind.h" #include "base/lazy_instance.h" #include "base/memory/scoped_ptr.h" +#include "base/timer.h" #include "base/utf_string_conversions.h" #include "chrome/browser/browser_process.h" #include "chrome/browser/printing/print_job.h" #include "chrome/browser/printing/print_job_manager.h" #include "chrome/browser/printing/print_preview_tab_controller.h" -#include "chrome/browser/printing/printer_query.h" #include "chrome/browser/printing/print_view_manager_observer.h" +#include "chrome/browser/printing/printer_query.h" #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" #include "chrome/browser/ui/webui/print_preview/print_preview_ui.h" #include "chrome/common/chrome_notification_types.h" #include "chrome/common/print_messages.h" -#include "content/browser/renderer_host/render_view_host.h" -#include "content/public/browser/notification_service.h" #include "content/public/browser/notification_details.h" +#include "content/public/browser/notification_service.h" #include "content/public/browser/notification_source.h" +#include "content/public/browser/render_view_host.h" #include "content/public/browser/web_contents.h" #include "grit/generated_resources.h" #include "printing/metafile.h" |