summaryrefslogtreecommitdiffstats
path: root/chrome/browser/tab_contents/navigation_entry.cc
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-25 18:04:59 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-25 18:04:59 +0000
commit6de74456d80f1f458509ec61c353b7ba2c728b84 (patch)
tree51912c23a1755d3aa8be422bfb7777fa7ef46860 /chrome/browser/tab_contents/navigation_entry.cc
parent24d2b8f01cca7f68cdb526c03a15f75a7feec35b (diff)
downloadchromium_src-6de74456d80f1f458509ec61c353b7ba2c728b84.zip
chromium_src-6de74456d80f1f458509ec61c353b7ba2c728b84.tar.gz
chromium_src-6de74456d80f1f458509ec61c353b7ba2c728b84.tar.bz2
Delete the ViewSourceTabContents.
This removes all the tab contents type stuff for view source mode. The RenderViewHostManager now automatically switches RenderViews when we turn view source mode on or off to get the desired effect. I also moved some instances of hardcoded schemes into chrome_constants.h, and renamed RendererCreated/Ready/Gone to RenderViewCreated/Ready/Gone to reflect what they actually mean. Review URL: http://codereview.chromium.org/28089 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10346 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/tab_contents/navigation_entry.cc')
-rw-r--r--chrome/browser/tab_contents/navigation_entry.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/browser/tab_contents/navigation_entry.cc b/chrome/browser/tab_contents/navigation_entry.cc
index bf0951c..e243f8a 100644
--- a/chrome/browser/tab_contents/navigation_entry.cc
+++ b/chrome/browser/tab_contents/navigation_entry.cc
@@ -4,6 +4,7 @@
#include "chrome/browser/tab_contents/navigation_entry.h"
+#include "chrome/common/url_constants.h"
#include "chrome/common/resource_bundle.h"
// Use this to get a new unique ID for a NavigationEntry during construction.
@@ -62,3 +63,7 @@ const std::wstring& NavigationEntry::GetTitleForDisplay() {
return display_url_as_string_;
return title_;
}
+
+bool NavigationEntry::IsViewSourceMode() const {
+ return display_url_.SchemeIs(chrome::kViewSourceScheme);
+}