summaryrefslogtreecommitdiffstats
path: root/chrome/browser/printing
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-02 22:54:35 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-02 22:54:35 +0000
commite011291ae7c0a0b79596cbddebf4c48ae7e7caf3 (patch)
tree1035148d3b715b17b3444a4414e2455e161a2e5e /chrome/browser/printing
parent5e1af2f43b67d5626af2e0df0044a034708b1578 (diff)
downloadchromium_src-e011291ae7c0a0b79596cbddebf4c48ae7e7caf3.zip
chromium_src-e011291ae7c0a0b79596cbddebf4c48ae7e7caf3.tar.gz
chromium_src-e011291ae7c0a0b79596cbddebf4c48ae7e7caf3.tar.bz2
WebUI: Change all references from "DOM UI" to "Web UI".
BUG=59945 TEST=trybots Review URL: http://codereview.chromium.org/6334059 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73526 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/printing')
-rw-r--r--chrome/browser/printing/cloud_print/cloud_print_setup_flow.cc2
-rw-r--r--chrome/browser/printing/cloud_print/cloud_print_setup_flow.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/printing/cloud_print/cloud_print_setup_flow.cc b/chrome/browser/printing/cloud_print/cloud_print_setup_flow.cc
index 61f2288..78061eb 100644
--- a/chrome/browser/printing/cloud_print/cloud_print_setup_flow.cc
+++ b/chrome/browser/printing/cloud_print/cloud_print_setup_flow.cc
@@ -230,7 +230,7 @@ void CloudPrintSetupFlow::OnUserClickedPrintTestPage() {
}
///////////////////////////////////////////////////////////////////////////////
-// Helper methods for showing contents of the DOM UI
+// Helper methods for showing contents of the Web UI
void CloudPrintSetupFlow::ShowGaiaLogin(const DictionaryValue& args) {
if (dom_ui_)
dom_ui_->CallJavascriptFunction(L"cloudprint.showSetupLogin");
diff --git a/chrome/browser/printing/cloud_print/cloud_print_setup_flow.h b/chrome/browser/printing/cloud_print/cloud_print_setup_flow.h
index 02be7f1..d63f9c7 100644
--- a/chrome/browser/printing/cloud_print/cloud_print_setup_flow.h
+++ b/chrome/browser/printing/cloud_print/cloud_print_setup_flow.h
@@ -31,7 +31,7 @@ class Browser;
// 1. Showing the setup dialog.
// 2. Providing the URL for the content of the dialog.
// 3. Providing a data source to provide the content HTML files.
-// 4. Providing a message handler to handle user actions in the DOM UI.
+// 4. Providing a message handler to handle user actions in the Web UI.
// 5. Responding to actions received in the message handler.
//
// The architecture for DOMUI is designed such that only the message handler
@@ -110,7 +110,7 @@ class CloudPrintSetupFlow : public HtmlDialogUIDelegate,
void ExecuteJavascriptInIFrame(const std::wstring& iframe_xpath,
const std::wstring& js);
- // Pointer to the DOM UI. This is provided by CloudPrintSetupMessageHandler
+ // Pointer to the Web UI. This is provided by CloudPrintSetupMessageHandler
// when attached.
DOMUI* dom_ui_;