OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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/memory_details.h" | 5 #include "chrome/browser/memory_details.h" |
6 #include <psapi.h> | 6 #include <psapi.h> |
7 | 7 |
8 #include "app/l10n_util.h" | 8 #include "app/l10n_util.h" |
9 #include "base/file_version_info.h" | 9 #include "base/file_version_info.h" |
10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
11 #include "chrome/app/chrome_version_info.h" | 11 #include "chrome/app/chrome_version_info.h" |
12 #include "chrome/browser/child_process_host.h" | 12 #include "chrome/browser/browser_child_process_host.h" |
13 #include "chrome/browser/chrome_thread.h" | 13 #include "chrome/browser/chrome_thread.h" |
14 #include "chrome/browser/renderer_host/backing_store_manager.h" | 14 #include "chrome/browser/renderer_host/backing_store_manager.h" |
15 #include "chrome/browser/renderer_host/render_process_host.h" | 15 #include "chrome/browser/renderer_host/render_process_host.h" |
16 #include "chrome/browser/tab_contents/navigation_entry.h" | 16 #include "chrome/browser/tab_contents/navigation_entry.h" |
17 #include "chrome/browser/tab_contents/tab_contents.h" | 17 #include "chrome/browser/tab_contents/tab_contents.h" |
18 #include "chrome/common/url_constants.h" | 18 #include "chrome/common/url_constants.h" |
19 #include "grit/chromium_strings.h" | 19 #include "grit/chromium_strings.h" |
20 | 20 |
21 // Known browsers which we collect details for. | 21 // Known browsers which we collect details for. |
22 enum { | 22 enum { |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 } | 153 } |
154 break; | 154 break; |
155 } | 155 } |
156 } while (::Process32Next(snapshot, &process_entry)); | 156 } while (::Process32Next(snapshot, &process_entry)); |
157 | 157 |
158 // Finally return to the browser thread. | 158 // Finally return to the browser thread. |
159 ChromeThread::PostTask( | 159 ChromeThread::PostTask( |
160 ChromeThread::UI, FROM_HERE, | 160 ChromeThread::UI, FROM_HERE, |
161 NewRunnableMethod(this, &MemoryDetails::CollectChildInfoOnUIThread)); | 161 NewRunnableMethod(this, &MemoryDetails::CollectChildInfoOnUIThread)); |
162 } | 162 } |
OLD | NEW |