| 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 76ce114c10c0725010b3dad96266c64965ac1566..082b9c9b8de02ea6634c44dd098f982c2f26ab17 100644
|
| --- a/chrome/browser/task_manager/task_manager.h
|
| +++ b/chrome/browser/task_manager/task_manager.h
|
| @@ -182,7 +182,6 @@ class TaskManagerModel : public base::RefCountedThreadSafe<TaskManagerModel> {
|
| base::string16 GetResourceVideoMemory(int index) const;
|
| base::string16 GetResourceSqliteMemoryUsed(int index) const;
|
| base::string16 GetResourceIdleWakeupsPerSecond(int index) const;
|
| - base::string16 GetResourceGoatsTeleported(int index) const;
|
| base::string16 GetResourceV8MemoryAllocatedSize(int index) const;
|
|
|
| // Gets the private memory (in bytes) that should be displayed for the passed
|
| @@ -230,9 +229,6 @@ class TaskManagerModel : public base::RefCountedThreadSafe<TaskManagerModel> {
|
| // Returns true if resource for the given row can be activated.
|
| bool CanActivate(int index) const;
|
|
|
| - // See design doc at http://go/at-teleporter for more information.
|
| - int GetGoatsTeleported(int index) const;
|
| -
|
| // Returns true if the resource is first/last in its group (resources
|
| // rendered by the same process are groupped together).
|
| bool IsResourceFirstInGroup(int index) const;
|
| @@ -347,9 +343,6 @@ class TaskManagerModel : public base::RefCountedThreadSafe<TaskManagerModel> {
|
| bool is_process_id_valid;
|
| base::ProcessId process_id;
|
|
|
| - bool is_goats_teleported_valid;
|
| - int goats_teleported;
|
| -
|
| bool is_webcore_stats_valid;
|
| blink::WebCache::ResourceTypeStats webcore_stats;
|
|
|
| @@ -540,9 +533,6 @@ class TaskManagerModel : public base::RefCountedThreadSafe<TaskManagerModel> {
|
| // only on the IO thread.
|
| bool is_updating_byte_count_;
|
|
|
| - // A salt lick for the goats.
|
| - uint64 goat_salt_;
|
| -
|
| // Buffer for coalescing BytesReadParam so we don't have to post a task on
|
| // each NotifyBytesRead() call.
|
| std::vector<BytesReadParam> bytes_read_buffer_;
|
|
|