diff options
author | tony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-05 23:36:08 +0000 |
---|---|---|
committer | tony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-05 23:36:08 +0000 |
commit | 9dc32ca678b8295b5a68cd1ddf90467c8a4502cf (patch) | |
tree | eb0508abe85a3cf34cb01f19845e18799e9c728b /chrome/browser | |
parent | 28469c405f3f5e6573a523d1d5e829eabbfb0f0e (diff) | |
download | chromium_src-9dc32ca678b8295b5a68cd1ddf90467c8a4502cf.zip chromium_src-9dc32ca678b8295b5a68cd1ddf90467c8a4502cf.tar.gz chromium_src-9dc32ca678b8295b5a68cd1ddf90467c8a4502cf.tar.bz2 |
Remove references to DOMUIContents. It looks like the class doesn't exist.
Review URL: http://codereview.chromium.org/257055
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28063 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser')
-rw-r--r-- | chrome/browser/dom_ui/dom_ui.h | 2 | ||||
-rw-r--r-- | chrome/browser/tab_contents/tab_contents.h | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/chrome/browser/dom_ui/dom_ui.h b/chrome/browser/dom_ui/dom_ui.h index adc56ab..b359abd 100644 --- a/chrome/browser/dom_ui/dom_ui.h +++ b/chrome/browser/dom_ui/dom_ui.h @@ -39,7 +39,7 @@ class DOMUI { // page. virtual void RenderViewReused(RenderViewHost* render_view_host) {} - // Called from DOMUIContents. + // Called from TabContents. virtual void ProcessDOMUIMessage(const std::string& message, const std::string& content, int request_id, diff --git a/chrome/browser/tab_contents/tab_contents.h b/chrome/browser/tab_contents/tab_contents.h index 7fb4822..f892775 100644 --- a/chrome/browser/tab_contents/tab_contents.h +++ b/chrome/browser/tab_contents/tab_contents.h @@ -72,7 +72,6 @@ class Message; class AutofillManager; class BlockedPopupContainer; class DOMUI; -class DOMUIContents; class DownloadItem; class LoadNotificationDetails; class OmniboxSearchHint; @@ -135,9 +134,6 @@ class TabContents : public PageNavigator, const PropertyBag* property_bag() const { return &property_bag_; } PropertyBag* property_bag() { return &property_bag_; } - // Returns this object as a DOMUIContents if it is one, and NULL otherwise. - virtual DOMUIContents* AsDOMUIContents() { return NULL; } - TabContentsDelegate* delegate() const { return delegate_; } void set_delegate(TabContentsDelegate* d) { delegate_ = d; } |