Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(536)

Unified Diff: chrome/browser/task_manager/task_manager_os_resources_win.cc

Issue 15196003: Create task_manager namespace and wrap classes related to TaskManager with it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/task_manager/task_manager_os_resources_win.cc
diff --git a/chrome/browser/task_manager/task_manager_os_resources_win.cc b/chrome/browser/task_manager/task_manager_os_resources_win.cc
deleted file mode 100644
index e1e070e1ed48aaa6563847cf85f5db01c6731824..0000000000000000000000000000000000000000
--- a/chrome/browser/task_manager/task_manager_os_resources_win.cc
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/task_manager/task_manager_os_resources_win.h"
-
-void GetWinGDIHandles(base::ProcessHandle process,
- size_t* current,
- size_t* peak) {
- *current = 0;
- *peak = 0;
- // Get a handle to |process| that has PROCESS_QUERY_INFORMATION rights.
- HANDLE current_process = GetCurrentProcess();
- HANDLE process_with_query_rights;
- if (DuplicateHandle(current_process, process, current_process,
- &process_with_query_rights, PROCESS_QUERY_INFORMATION,
- false, 0)) {
- *current = GetGuiResources(process_with_query_rights, GR_GDIOBJECTS);
- *peak = GetGuiResources(process_with_query_rights, GR_GDIOBJECTS_PEAK);
- CloseHandle(process_with_query_rights);
- }
-}
-
-void GetWinUSERHandles(base::ProcessHandle process,
- size_t* current,
- size_t* peak) {
- *current = 0;
- *peak = 0;
- // Get a handle to |process| that has PROCESS_QUERY_INFORMATION rights.
- HANDLE current_process = GetCurrentProcess();
- HANDLE process_with_query_rights;
- if (DuplicateHandle(current_process, process, current_process,
- &process_with_query_rights, PROCESS_QUERY_INFORMATION,
- false, 0)) {
- *current = GetGuiResources(process_with_query_rights, GR_USEROBJECTS);
- *peak = GetGuiResources(process_with_query_rights, GR_USEROBJECTS_PEAK);
- CloseHandle(process_with_query_rights);
- }
-}

Powered by Google App Engine
This is Rietveld 408576698