diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-31 23:12:49 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-31 23:12:49 +0000 |
commit | e82abf3ca2ded96bc353e4df47d20380f9d89a78 (patch) | |
tree | 3c04c4eec3f29049fd6a3918eabdbdab278ec76b /chrome/browser/dom_ui/constrained_html_ui.cc | |
parent | 66d98007d8463c377b5813884565336a397db5a9 (diff) | |
download | chromium_src-e82abf3ca2ded96bc353e4df47d20380f9d89a78.zip chromium_src-e82abf3ca2ded96bc353e4df47d20380f9d89a78.tar.gz chromium_src-e82abf3ca2ded96bc353e4df47d20380f9d89a78.tar.bz2 |
WebUI: Rename namespace dom_ui_util to web_ui_util.
BUG=59945
TEST=trybots
Review URL: http://codereview.chromium.org/6392013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73214 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/dom_ui/constrained_html_ui.cc')
-rw-r--r-- | chrome/browser/dom_ui/constrained_html_ui.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/dom_ui/constrained_html_ui.cc b/chrome/browser/dom_ui/constrained_html_ui.cc index 75aeda1..c3cfe0f 100644 --- a/chrome/browser/dom_ui/constrained_html_ui.cc +++ b/chrome/browser/dom_ui/constrained_html_ui.cc @@ -1,12 +1,12 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 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 "chrome/browser/dom_ui/constrained_html_ui.h" #include "base/lazy_instance.h" -#include "chrome/browser/dom_ui/dom_ui_util.h" #include "chrome/browser/dom_ui/html_dialog_ui.h" +#include "chrome/browser/dom_ui/web_ui_util.h" #include "chrome/browser/tab_contents/tab_contents.h" #include "chrome/browser/renderer_host/render_view_host.h" #include "chrome/common/bindings_policy.h" @@ -42,7 +42,7 @@ void ConstrainedHtmlUI::RenderViewCreated( void ConstrainedHtmlUI::OnDialogClose(const ListValue* args) { GetConstrainedDelegate()->GetHtmlDialogUIDelegate()->OnDialogClosed( - dom_ui_util::GetJsonResponseFromFirstArgumentInList(args)); + web_ui_util::GetJsonResponseFromFirstArgumentInList(args)); GetConstrainedDelegate()->OnDialogClose(); } |