Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(736)

Unified Diff: chrome/browser/ui/browser.h

Issue 8985008: Don't use browser windows for platform app shell windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Disable PlatformAppBrowserTest.AppWithContextMenu on Windows Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/browser.h
diff --git a/chrome/browser/ui/browser.h b/chrome/browser/ui/browser.h
index d1a0f92ca5e1f2c5f765b39e981b944c90bb4469..4eb9744fce3a8c5ccbed7d143d95212c3e8a4095 100644
--- a/chrome/browser/ui/browser.h
+++ b/chrome/browser/ui/browser.h
@@ -102,8 +102,7 @@ class Browser : public TabHandlerDelegate,
// BrowserTest.StartMaximized.
TYPE_TABBED = 1,
TYPE_POPUP = 2,
- TYPE_PANEL = 3,
- TYPE_SHELL = 4
+ TYPE_PANEL = 3
};
// Possible elements of the Browser window.
@@ -851,7 +850,6 @@ class Browser : public TabHandlerDelegate,
bool is_type_tabbed() const { return type_ == TYPE_TABBED; }
bool is_type_popup() const { return type_ == TYPE_POPUP; }
bool is_type_panel() const { return type_ == TYPE_PANEL; }
- bool is_type_shell() const { return type_ == TYPE_SHELL; }
bool is_app() const;
bool is_devtools() const;

Powered by Google App Engine
This is Rietveld 408576698