diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-22 23:32:38 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-22 23:32:38 +0000 |
commit | 42b79565bd702fa7bd46b9545a73c2852255be23 (patch) | |
tree | 82b64c157c0e40cdfa0eac6777394060b161fcfd /chrome/browser/printing | |
parent | 4f45d458c94df1f27a8e1091387821a71f0b2a91 (diff) | |
download | chromium_src-42b79565bd702fa7bd46b9545a73c2852255be23.zip chromium_src-42b79565bd702fa7bd46b9545a73c2852255be23.tar.gz chromium_src-42b79565bd702fa7bd46b9545a73c2852255be23.tar.bz2 |
WebUI: Move chrome/browser/dom_ui/ to chrome/browser/webui/.
To reduce the size of this change I've left stub header files in chrome/browser/dom_ui/.
I'll updated the references and delete the stub files later.
BUG=59945, 59946
TEST=trybots
Review URL: http://codereview.chromium.org/6538075
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75660 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/printing')
-rw-r--r-- | chrome/browser/printing/print_dialog_cloud_internal.h | 4 | ||||
-rw-r--r-- | chrome/browser/printing/print_preview_message_handler.cc | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/chrome/browser/printing/print_dialog_cloud_internal.h b/chrome/browser/printing/print_dialog_cloud_internal.h index 91612ae..c5ab8b6 100644 --- a/chrome/browser/printing/print_dialog_cloud_internal.h +++ b/chrome/browser/printing/print_dialog_cloud_internal.h @@ -57,12 +57,12 @@ class CloudPrintDataSender // Calls to read in the PDF file (on the FILE thread) then send that // information to the dialog renderer (on the IO thread). We know - // that the dom_ui pointer lifetime will outlast us, so we should be + // that the WebUI pointer lifetime will outlast us, so we should be // good. void ReadPrintDataFile(const FilePath& path_to_pdf); void SendPrintDataFile(); - // Cancels any ramining part of the task by clearing out the dom_ui + // Cancels any ramining part of the task by clearing out the WebUI // helper_ ptr. void CancelPrintDataFile(); diff --git a/chrome/browser/printing/print_preview_message_handler.cc b/chrome/browser/printing/print_preview_message_handler.cc index b6e96fc..7307750 100644 --- a/chrome/browser/printing/print_preview_message_handler.cc +++ b/chrome/browser/printing/print_preview_message_handler.cc @@ -6,14 +6,14 @@ #include "chrome/browser/browser_process.h" #include "chrome/browser/browser_thread.h" -#include "chrome/browser/dom_ui/print_preview_handler.h" -#include "chrome/browser/dom_ui/print_preview_ui.h" -#include "chrome/browser/dom_ui/print_preview_ui_html_source.h" -#include "chrome/browser/printing/printer_query.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/renderer_host/render_view_host.h" #include "chrome/browser/tab_contents/tab_contents.h" +#include "chrome/browser/webui/print_preview_handler.h" +#include "chrome/browser/webui/print_preview_ui.h" +#include "chrome/browser/webui/print_preview_ui_html_source.h" #include "chrome/common/render_messages.h" #include "chrome/common/render_messages_params.h" #include "ipc/ipc_message_macros.h" |