OLD | NEW |
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 Loading... |
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_ |
OLD | NEW |