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

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

Issue 5526002: Show extension tabs in task manager and correctly label apps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix resource types and tests. Created 10 years 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/tab_contents/tab_contents.h
diff --git a/chrome/browser/tab_contents/tab_contents.h b/chrome/browser/tab_contents/tab_contents.h
index 19a61a8cd2491172d17849cd1169450321b17841..b409595ccdc3ffa7983847d068c6dcec0eb6e119 100644
--- a/chrome/browser/tab_contents/tab_contents.h
+++ b/chrome/browser/tab_contents/tab_contents.h
@@ -194,6 +194,12 @@ class TabContents : public PageNavigator,
// App extensions ------------------------------------------------------------
+ // Returns whether this tab is showing either a hosted or packaged app.
+ bool IsInstalledApp() const;
+
+ // TODO(creis): The app-tab functions below are deprecated and should be
+ // removed.
+
// Sets the extension denoting this as an app. If |extension| is non-null this
// tab becomes an app-tab. TabContents does not listen for unload events for
// the extension. It's up to consumers of TabContents to do that.
@@ -209,6 +215,8 @@ class TabContents : public PageNavigator,
void SetExtensionAppById(const std::string& extension_app_id);
const Extension* extension_app() const { return extension_app_; }
+
+ // Returns whether this tab is an app-tab (deprecated).
bool is_app() const { return extension_app_ != NULL; }
// If an app extension has been explicitly set for this TabContents its icon
« no previous file with comments | « no previous file | chrome/browser/tab_contents/tab_contents.cc » ('j') | chrome/browser/tab_contents/tab_contents.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698