| 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;
|
|
|