| 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/tab_contents_information.h" | 5 #include "chrome/browser/task_manager/tab_contents_information.h" |
| 6 | 6 |
| 7 #include <stddef.h> |
| 8 |
| 7 #include "base/callback.h" | 9 #include "base/callback.h" |
| 10 #include "base/macros.h" |
| 8 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
| 9 #include "chrome/browser/browser_process.h" | 12 #include "chrome/browser/browser_process.h" |
| 10 #include "chrome/browser/devtools/devtools_window.h" | 13 #include "chrome/browser/devtools/devtools_window.h" |
| 11 #include "chrome/browser/favicon/favicon_utils.h" | 14 #include "chrome/browser/favicon/favicon_utils.h" |
| 12 #include "chrome/browser/prerender/prerender_manager.h" | 15 #include "chrome/browser/prerender/prerender_manager.h" |
| 13 #include "chrome/browser/prerender/prerender_manager_factory.h" | 16 #include "chrome/browser/prerender/prerender_manager_factory.h" |
| 14 #include "chrome/browser/profiles/profile.h" | 17 #include "chrome/browser/profiles/profile.h" |
| 15 #include "chrome/browser/profiles/profile_manager.h" | 18 #include "chrome/browser/profiles/profile_manager.h" |
| 16 #include "chrome/browser/task_manager/renderer_resource.h" | 19 #include "chrome/browser/task_manager/renderer_resource.h" |
| 17 #include "chrome/browser/task_manager/task_manager_util.h" | 20 #include "chrome/browser/task_manager/task_manager_util.h" |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 } | 173 } |
| 171 } | 174 } |
| 172 } | 175 } |
| 173 | 176 |
| 174 scoped_ptr<RendererResource> TabContentsInformation::MakeResource( | 177 scoped_ptr<RendererResource> TabContentsInformation::MakeResource( |
| 175 content::WebContents* web_contents) { | 178 content::WebContents* web_contents) { |
| 176 return scoped_ptr<RendererResource>(new TabContentsResource(web_contents)); | 179 return scoped_ptr<RendererResource>(new TabContentsResource(web_contents)); |
| 177 } | 180 } |
| 178 | 181 |
| 179 } // namespace task_manager | 182 } // namespace task_manager |
| OLD | NEW |