| 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 <stddef.h> |
| 9 |
| 10 #include "base/macros.h" |
| 9 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 10 #include "base/process/process_handle.h" | 12 #include "base/process/process_handle.h" |
| 11 #include "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
| 12 #include "third_party/WebKit/public/web/WebCache.h" | 14 #include "third_party/WebKit/public/web/WebCache.h" |
| 13 | 15 |
| 14 class PrefRegistrySimple; | 16 class PrefRegistrySimple; |
| 15 class TaskManagerModel; | 17 class TaskManagerModel; |
| 16 | 18 |
| 17 namespace content { | 19 namespace content { |
| 18 class WebContents; | 20 class WebContents; |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 | 138 |
| 137 protected: | 139 protected: |
| 138 friend class base::RefCountedThreadSafe<ResourceProvider>; | 140 friend class base::RefCountedThreadSafe<ResourceProvider>; |
| 139 | 141 |
| 140 virtual ~ResourceProvider() {} | 142 virtual ~ResourceProvider() {} |
| 141 }; | 143 }; |
| 142 | 144 |
| 143 } // namespace task_manager | 145 } // namespace task_manager |
| 144 | 146 |
| 145 #endif // CHROME_BROWSER_TASK_MANAGER_RESOURCE_PROVIDER_H_ | 147 #endif // CHROME_BROWSER_TASK_MANAGER_RESOURCE_PROVIDER_H_ |
| OLD | NEW |