OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_COCOA_TASK_MANAGER_MAC_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_TASK_MANAGER_MAC_H_ |
6 #define CHROME_BROWSER_UI_COCOA_TASK_MANAGER_MAC_H_ | 6 #define CHROME_BROWSER_UI_COCOA_TASK_MANAGER_MAC_H_ |
7 | 7 |
8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #import "base/mac/cocoa_protocols.h" | |
12 #include "base/memory/scoped_nsobject.h" | 11 #include "base/memory/scoped_nsobject.h" |
13 #include "chrome/browser/task_manager/task_manager.h" | 12 #include "chrome/browser/task_manager/task_manager.h" |
14 #include "chrome/browser/ui/cocoa/table_row_nsimage_cache.h" | 13 #include "chrome/browser/ui/cocoa/table_row_nsimage_cache.h" |
15 | 14 |
16 @class WindowSizeAutosaver; | 15 @class WindowSizeAutosaver; |
17 class TaskManagerMac; | 16 class TaskManagerMac; |
18 | 17 |
19 namespace gfx { | 18 namespace gfx { |
20 class ImageSkia; | 19 class ImageSkia; |
21 } | 20 } |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 bool highlight_background_resources_; | 122 bool highlight_background_resources_; |
124 | 123 |
125 // An open task manager window. There can only be one open at a time. This | 124 // An open task manager window. There can only be one open at a time. This |
126 // is reset to NULL when the window is closed. | 125 // is reset to NULL when the window is closed. |
127 static TaskManagerMac* instance_; | 126 static TaskManagerMac* instance_; |
128 | 127 |
129 DISALLOW_COPY_AND_ASSIGN(TaskManagerMac); | 128 DISALLOW_COPY_AND_ASSIGN(TaskManagerMac); |
130 }; | 129 }; |
131 | 130 |
132 #endif // CHROME_BROWSER_UI_COCOA_TASK_MANAGER_MAC_H_ | 131 #endif // CHROME_BROWSER_UI_COCOA_TASK_MANAGER_MAC_H_ |
OLD | NEW |