| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_RESOURCE_PROVIDER_H_ | 5 #ifndef CHROME_BROWSER_TASK_MANAGER_RESOURCE_PROVIDER_H_ |
| 6 #define CHROME_BROWSER_TASK_MANAGER_RESOURCE_PROVIDER_H_ | 6 #define CHROME_BROWSER_TASK_MANAGER_RESOURCE_PROVIDER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "base/process_util.h" | 10 #include "base/process/process_handle.h" |
| 11 #include "base/strings/string16.h" | 11 #include "base/strings/string16.h" |
| 12 #include "third_party/WebKit/public/web/WebCache.h" | 12 #include "third_party/WebKit/public/web/WebCache.h" |
| 13 | 13 |
| 14 class PrefRegistrySimple; | 14 class PrefRegistrySimple; |
| 15 class TaskManagerModel; | 15 class TaskManagerModel; |
| 16 | 16 |
| 17 namespace content { | 17 namespace content { |
| 18 class WebContents; | 18 class WebContents; |
| 19 } | 19 } |
| 20 | 20 |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 | 165 |
| 166 protected: | 166 protected: |
| 167 friend class base::RefCountedThreadSafe<ResourceProvider>; | 167 friend class base::RefCountedThreadSafe<ResourceProvider>; |
| 168 | 168 |
| 169 virtual ~ResourceProvider() {} | 169 virtual ~ResourceProvider() {} |
| 170 }; | 170 }; |
| 171 | 171 |
| 172 } // namespace task_manager | 172 } // namespace task_manager |
| 173 | 173 |
| 174 #endif // CHROME_BROWSER_TASK_MANAGER_RESOURCE_PROVIDER_H_ | 174 #endif // CHROME_BROWSER_TASK_MANAGER_RESOURCE_PROVIDER_H_ |
| OLD | NEW |