diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-15 00:05:55 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-15 00:05:55 +0000 |
commit | c09163aee7f50d7bd7801343278c8bf68c9fe828 (patch) | |
tree | 0b759630920e71bdbe6fa8c88d008934cc66eb63 /chrome/browser/memory_details.cc | |
parent | 58640fa257d09432b723e9891a3581ddedbee99d (diff) | |
download | chromium_src-c09163aee7f50d7bd7801343278c8bf68c9fe828.zip chromium_src-c09163aee7f50d7bd7801343278c8bf68c9fe828.tar.gz chromium_src-c09163aee7f50d7bd7801343278c8bf68c9fe828.tar.bz2 |
WebUI: Get rid of more references to dom_ui and DOM_UI.
They were found with:
$ git gs dom_ui_
$ git gs ::DOM_UI
BUG=59945
TEST=trybots
Review URL: http://codereview.chromium.org/6520019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74884 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/memory_details.cc')
-rw-r--r-- | chrome/browser/memory_details.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/memory_details.cc b/chrome/browser/memory_details.cc index 0852ef3..fbf431c 100644 --- a/chrome/browser/memory_details.cc +++ b/chrome/browser/memory_details.cc @@ -158,7 +158,7 @@ void MemoryDetails::CollectChildInfoOnUIThread() { RenderViewHostDelegate* host_delegate = host->delegate(); GURL url = host_delegate->GetURL(); ViewType::Type type = host_delegate->GetRenderViewType(); - if (host->enabled_bindings() & BindingsPolicy::DOM_UI) { + if (host->enabled_bindings() & BindingsPolicy::WEB_UI) { // TODO(erikkay) the type for devtools doesn't actually appear to // be set. if (type == ViewType::DEV_TOOLS_UI) |