diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-05 20:47:28 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-05 20:47:28 +0000 |
commit | c92e3c4804f1715a02f723e91561f7ddb0c1f009 (patch) | |
tree | 4423a28cebaa3ed1f6d563053439a13cecfd402f /chrome | |
parent | 6f35e04b4903927e1df4915e6dc0201f66a0f73b (diff) | |
download | chromium_src-c92e3c4804f1715a02f723e91561f7ddb0c1f009.zip chromium_src-c92e3c4804f1715a02f723e91561f7ddb0c1f009.tar.gz chromium_src-c92e3c4804f1715a02f723e91561f7ddb0c1f009.tar.bz2 |
Remove the chrome view contents tab contents type. Nobody uses it.
Review URL: http://codereview.chromium.org/39212
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11030 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/tab_contents/tab_contents_type.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/browser/tab_contents/tab_contents_type.h b/chrome/browser/tab_contents/tab_contents_type.h index 28ee69f..6f8a81c 100644 --- a/chrome/browser/tab_contents/tab_contents_type.h +++ b/chrome/browser/tab_contents/tab_contents_type.h @@ -12,10 +12,13 @@ enum TabContentsType { TAB_CONTENTS_UNKNOWN_TYPE = 0, TAB_CONTENTS_WEB, - TAB_CONTENTS_CHROME_VIEW_CONTENTS, + + // These are all subclasses of DOM UI. TAB_CONTENTS_HTML_DIALOG, TAB_CONTENTS_DEBUGGER, TAB_CONTENTS_DOM_UI, + + // DO NOT EVEN THINK ABOUT ADDING MORE TAB CONTENTS TYPES HERE. SEE brettw. TAB_CONTENTS_NUM_TYPES }; |