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

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

Issue 10533070: TabContentsWrapper -> TabContents, part 31. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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
« no previous file with comments | « no previous file | chrome/browser/task_manager/task_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/task_manager/task_manager.h
diff --git a/chrome/browser/task_manager/task_manager.h b/chrome/browser/task_manager/task_manager.h
index b7cd68a01af6527921902746088077ba72c18621..d4a62ea69fb437c26972b7f33565a9581d154b0a 100644
--- a/chrome/browser/task_manager/task_manager.h
+++ b/chrome/browser/task_manager/task_manager.h
@@ -22,7 +22,6 @@
#include "third_party/WebKit/Source/WebKit/chromium/public/WebCache.h"
class TabContents;
-typedef TabContents TabContentsWrapper;
class TaskManagerModel;
namespace base {
@@ -107,7 +106,7 @@ class TaskManager {
// A helper function for ActivateFocusedTab. Returns NULL by default
// because not all resources have an associated tab.
- virtual TabContentsWrapper* GetTabContents() const { return NULL; }
+ virtual TabContents* GetTabContents() const { return NULL; }
// Whether this resource does report the network usage accurately.
// This controls whether 0 or N/A is displayed when no bytes have been
@@ -403,8 +402,8 @@ class TaskManagerModel : public base::RefCountedThreadSafe<TaskManagerModel> {
// Returns the type of the given resource.
TaskManager::Resource::Type GetResourceType(int index) const;
- // Returns TabContentsWrapper of given resource or NULL if not applicable.
- TabContentsWrapper* GetResourceTabContents(int index) const;
+ // Returns TabContents of given resource or NULL if not applicable.
+ TabContents* GetResourceTabContents(int index) const;
// Returns Extension of given resource or NULL if not applicable.
const extensions::Extension* GetResourceExtension(int index) const;
« no previous file with comments | « no previous file | chrome/browser/task_manager/task_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698