Index: chrome/installer/setup/uninstall.cc |
diff --git a/chrome/installer/setup/uninstall.cc b/chrome/installer/setup/uninstall.cc |
index 0d3d193ee84f9883ffce324cc2c3f88d56c0b4fe..f07e70343b06ff4cc511462d8c01d627c961ef86 100644 |
--- a/chrome/installer/setup/uninstall.cc |
+++ b/chrome/installer/setup/uninstall.cc |
@@ -1,4 +1,4 @@ |
-// Copyright (c) 2010 The Chromium Authors. All rights reserved. |
+// Copyright (c) 2011 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. |
// |
@@ -8,11 +8,11 @@ |
#include "base/file_util.h" |
#include "base/path_service.h" |
-#include "base/scoped_handle.h" |
#include "base/string_number_conversions.h" |
#include "base/string_util.h" |
#include "base/utf_string_conversions.h" |
#include "base/win/registry.h" |
+#include "base/win/scoped_handle.h" |
#include "base/win/windows_version.h" |
#include "chrome/common/result_codes.h" |
#include "chrome/common/chrome_constants.h" |
@@ -146,7 +146,7 @@ void CloseChromeFrameHelperProcess() { |
DWORD pid = 0; |
::GetWindowThreadProcessId(window, &pid); |
DCHECK_NE(pid, 0U); |
- ScopedHandle process(::OpenProcess(SYNCHRONIZE, FALSE, pid)); |
+ base::win::ScopedHandle process(::OpenProcess(SYNCHRONIZE, FALSE, pid)); |
PLOG_IF(INFO, !process) << "Failed to open process: " << pid; |
bool kill = true; |