summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser.h
diff options
context:
space:
mode:
authoraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-20 20:27:44 +0000
committeraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-20 20:27:44 +0000
commitaf801acd0220b2d7aa69e0f750d06aed86e0c4f9 (patch)
tree73b94d1957aae85ee350fa7c6e255bd6c4656790 /chrome/browser/browser.h
parent9d8fe3b2085717e5889809255393f50d71a69365 (diff)
downloadchromium_src-af801acd0220b2d7aa69e0f750d06aed86e0c4f9.zip
chromium_src-af801acd0220b2d7aa69e0f750d06aed86e0c4f9.tar.gz
chromium_src-af801acd0220b2d7aa69e0f750d06aed86e0c4f9.tar.bz2
Revert r56902
TBR=rafaelw@chromium.org git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56907 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser.h')
-rw-r--r--chrome/browser/browser.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/chrome/browser/browser.h b/chrome/browser/browser.h
index 6aa311c..4c99238 100644
--- a/chrome/browser/browser.h
+++ b/chrome/browser/browser.h
@@ -61,12 +61,19 @@ class Browser : public TabStripModelDelegate,
TYPE_POPUP = 2,
// The old-style app created via "Create application shortcuts".
TYPE_APP = 4,
+ // The new-style app created by installing a crx. This kinda needs to be
+ // separate because we require larger icons and an application name that
+ // are found in the crx. If we ever decide to create this kind of app using
+ // some other system (eg some web standard), maybe we should generalize this
+ // name to TYPE_MULTITAB or something.
+ TYPE_EXTENSION_APP = 8,
TYPE_APP_POPUP = TYPE_APP | TYPE_POPUP,
TYPE_DEVTOOLS = TYPE_APP | 16,
TYPE_APP_PANEL = TYPE_APP | 32,
TYPE_ANY = TYPE_NORMAL |
TYPE_POPUP |
TYPE_APP |
+ TYPE_EXTENSION_APP |
TYPE_DEVTOOLS |
TYPE_APP_PANEL
};