| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "chrome/browser/task_manager/web_contents_resource_provider.h" | 5 #include "chrome/browser/task_manager/web_contents_resource_provider.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
| 9 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
| 10 #include "chrome/browser/browser_process.h" | 10 #include "chrome/browser/browser_process.h" |
| 11 #include "chrome/browser/prerender/prerender_manager.h" | 11 #include "chrome/browser/prerender/prerender_manager.h" |
| 12 #include "chrome/browser/prerender/prerender_manager_factory.h" | 12 #include "chrome/browser/prerender/prerender_manager_factory.h" |
| 13 #include "chrome/browser/profiles/profile.h" | 13 #include "chrome/browser/profiles/profile.h" |
| 14 #include "chrome/browser/profiles/profile_manager.h" | 14 #include "chrome/browser/profiles/profile_manager.h" |
| 15 #include "chrome/browser/task_manager/renderer_resource.h" | 15 #include "chrome/browser/task_manager/renderer_resource.h" |
| 16 #include "chrome/browser/task_manager/task_manager.h" | 16 #include "chrome/browser/task_manager/task_manager.h" |
| 17 #include "chrome/browser/task_manager/task_manager_util.h" | 17 #include "chrome/browser/task_manager/task_manager_util.h" |
| 18 #include "chrome/browser/task_manager/web_contents_information.h" | 18 #include "chrome/browser/task_manager/web_contents_information.h" |
| 19 #include "chrome/grit/generated_resources.h" |
| 19 #include "content/public/browser/render_frame_host.h" | 20 #include "content/public/browser/render_frame_host.h" |
| 20 #include "content/public/browser/render_process_host.h" | 21 #include "content/public/browser/render_process_host.h" |
| 21 #include "content/public/browser/render_view_host.h" | 22 #include "content/public/browser/render_view_host.h" |
| 22 #include "content/public/browser/render_widget_host_iterator.h" | 23 #include "content/public/browser/render_widget_host_iterator.h" |
| 23 #include "content/public/browser/site_instance.h" | 24 #include "content/public/browser/site_instance.h" |
| 24 #include "content/public/browser/web_contents.h" | 25 #include "content/public/browser/web_contents.h" |
| 25 #include "content/public/browser/web_contents_observer.h" | 26 #include "content/public/browser/web_contents_observer.h" |
| 26 #include "grit/generated_resources.h" | |
| 27 #include "ui/base/l10n/l10n_util.h" | 27 #include "ui/base/l10n/l10n_util.h" |
| 28 #include "ui/gfx/image/image_skia.h" | 28 #include "ui/gfx/image/image_skia.h" |
| 29 | 29 |
| 30 using content::RenderViewHost; | 30 using content::RenderViewHost; |
| 31 using content::RenderFrameHost; | 31 using content::RenderFrameHost; |
| 32 using content::SiteInstance; | 32 using content::SiteInstance; |
| 33 using content::WebContents; | 33 using content::WebContents; |
| 34 | 34 |
| 35 namespace task_manager { | 35 namespace task_manager { |
| 36 | 36 |
| (...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 WebContents* web_contents, | 331 WebContents* web_contents, |
| 332 TaskManagerWebContentsEntry* entry) { | 332 TaskManagerWebContentsEntry* entry) { |
| 333 if (!entries_.erase(web_contents)) { | 333 if (!entries_.erase(web_contents)) { |
| 334 NOTREACHED(); | 334 NOTREACHED(); |
| 335 return; | 335 return; |
| 336 } | 336 } |
| 337 delete entry; // Typically, this is our caller. Deletion is okay. | 337 delete entry; // Typically, this is our caller. Deletion is okay. |
| 338 } | 338 } |
| 339 | 339 |
| 340 } // namespace task_manager | 340 } // namespace task_manager |
| OLD | NEW |