| 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_TASK_MANAGEMENT_PROVIDERS_WEB_CONTENTS_RENDERER_TASK_H_ | 5 #ifndef CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_WEB_CONTENTS_RENDERER_TASK_H_ |
| 6 #define CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_WEB_CONTENTS_RENDERER_TASK_H_ | 6 #define CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_WEB_CONTENTS_RENDERER_TASK_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/memory/scoped_ptr.h" |
| 11 #include "chrome/browser/task_management/providers/task.h" | 12 #include "chrome/browser/task_management/providers/task.h" |
| 12 #include "components/favicon/core/favicon_driver_observer.h" | 13 #include "components/favicon/core/favicon_driver_observer.h" |
| 13 #include "content/public/browser/navigation_entry.h" | 14 #include "content/public/browser/navigation_entry.h" |
| 14 | 15 |
| 15 class ProcessResourceUsage; | 16 class ProcessResourceUsage; |
| 16 | 17 |
| 17 namespace content { | 18 namespace content { |
| 18 class RenderProcessHost; | 19 class RenderProcessHost; |
| 19 class WebContents; | 20 class WebContents; |
| 20 } // namespace content | 21 } // namespace content |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 | 128 |
| 128 base::TerminationStatus termination_status_; | 129 base::TerminationStatus termination_status_; |
| 129 int termination_error_code_; | 130 int termination_error_code_; |
| 130 | 131 |
| 131 DISALLOW_COPY_AND_ASSIGN(RendererTask); | 132 DISALLOW_COPY_AND_ASSIGN(RendererTask); |
| 132 }; | 133 }; |
| 133 | 134 |
| 134 } // namespace task_management | 135 } // namespace task_management |
| 135 | 136 |
| 136 #endif // CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_WEB_CONTENTS_RENDERER_TASK_H
_ | 137 #endif // CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_WEB_CONTENTS_RENDERER_TASK_H
_ |
| OLD | NEW |