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

Side by Side Diff: chrome/browser/ui/task_manager/task_manager_table_model.h

Issue 1439213004: Fix various TaskManager bugs and add new enhancements (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: auto*& --> auto* Created 5 years, 1 month 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_TASK_MANAGER_TASK_MANAGER_TABLE_MODEL_H_ 5 #ifndef CHROME_BROWSER_UI_TASK_MANAGER_TASK_MANAGER_TABLE_MODEL_H_
6 #define CHROME_BROWSER_UI_TASK_MANAGER_TASK_MANAGER_TABLE_MODEL_H_ 6 #define CHROME_BROWSER_UI_TASK_MANAGER_TASK_MANAGER_TABLE_MODEL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 // manager. 124 // manager.
125 ui::TableModelObserver* table_model_observer_; 125 ui::TableModelObserver* table_model_observer_;
126 126
127 // The sorted list of task IDs by process ID then by task ID. 127 // The sorted list of task IDs by process ID then by task ID.
128 std::vector<TaskId> tasks_; 128 std::vector<TaskId> tasks_;
129 129
130 // The owned task manager values stringifier that will be used to convert the 130 // The owned task manager values stringifier that will be used to convert the
131 // values to string16. 131 // values to string16.
132 scoped_ptr<TaskManagerValuesStringifier> stringifier_; 132 scoped_ptr<TaskManagerValuesStringifier> stringifier_;
133 133
134 // The status of the flag #enable-nacl-debug.
135 bool is_nacl_debugging_flag_enabled_;
136
134 DISALLOW_COPY_AND_ASSIGN(TaskManagerTableModel); 137 DISALLOW_COPY_AND_ASSIGN(TaskManagerTableModel);
135 }; 138 };
136 139
137 } // namespace task_management 140 } // namespace task_management
138 141
139 #endif // CHROME_BROWSER_UI_TASK_MANAGER_TASK_MANAGER_TABLE_MODEL_H_ 142 #endif // CHROME_BROWSER_UI_TASK_MANAGER_TASK_MANAGER_TABLE_MODEL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698