OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_TASK_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_TASK_MANAGER_H_ |
6 #define CHROME_BROWSER_TASK_MANAGER_H_ | 6 #define CHROME_BROWSER_TASK_MANAGER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <utility> | 10 #include <utility> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
14 #include "base/lock.h" | 14 #include "base/lock.h" |
15 #include "base/observer_list.h" | 15 #include "base/observer_list.h" |
16 #include "base/process_util.h" | 16 #include "base/process_util.h" |
17 #include "base/ref_counted.h" | 17 #include "base/ref_counted.h" |
18 #include "base/singleton.h" | 18 #include "base/singleton.h" |
19 #include "base/timer.h" | 19 #include "base/timer.h" |
20 #include "chrome/browser/renderer_host/web_cache_manager.h" | 20 #include "chrome/browser/renderer_host/web_cache_manager.h" |
21 #include "chrome/browser/tab_contents/tab_contents.h" | 21 #include "chrome/browser/tab_contents/tab_contents.h" |
22 #include "net/url_request/url_request_job_tracker.h" | 22 #include "net/url_request/url_request_job_tracker.h" |
23 #include "testing/gtest/include/gtest/gtest_prod.h" | 23 #include "testing/gtest/include/gtest/gtest_prod.h" |
24 #include "webkit/api/public/WebCache.h" | 24 #include "third_party/WebKit/WebKit/chromium/public/WebCache.h" |
25 | 25 |
26 class Extension; | 26 class Extension; |
27 class SkBitmap; | 27 class SkBitmap; |
28 class TaskManager; | 28 class TaskManager; |
29 class TaskManagerModel; | 29 class TaskManagerModel; |
30 | 30 |
31 struct BytesReadParam; | 31 struct BytesReadParam; |
32 | 32 |
33 namespace base { | 33 namespace base { |
34 class ProcessMetrics; | 34 class ProcessMetrics; |
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
375 // Whether we are currently in the process of updating. | 375 // Whether we are currently in the process of updating. |
376 UpdateState update_state_; | 376 UpdateState update_state_; |
377 | 377 |
378 // See design doc at http://go/at-teleporter for more information. | 378 // See design doc at http://go/at-teleporter for more information. |
379 static int goats_teleported_; | 379 static int goats_teleported_; |
380 | 380 |
381 DISALLOW_COPY_AND_ASSIGN(TaskManagerModel); | 381 DISALLOW_COPY_AND_ASSIGN(TaskManagerModel); |
382 }; | 382 }; |
383 | 383 |
384 #endif // CHROME_BROWSER_TASK_MANAGER_H_ | 384 #endif // CHROME_BROWSER_TASK_MANAGER_H_ |
OLD | NEW |