| Index: chrome_frame/test/ie_event_sink.cc
|
| diff --git a/chrome_frame/test/ie_event_sink.cc b/chrome_frame/test/ie_event_sink.cc
|
| index 1649e2a76d3d3f7595b6fe8dfbb3e69e1e97edc9..c570558fdf9aafb7159ec7f14bfa215e35805519 100644
|
| --- a/chrome_frame/test/ie_event_sink.cc
|
| +++ b/chrome_frame/test/ie_event_sink.cc
|
| @@ -1,14 +1,14 @@
|
| -// 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.
|
|
|
| #include "chrome_frame/test/ie_event_sink.h"
|
|
|
| -#include "base/scoped_handle.h"
|
| #include "base/string_util.h"
|
| #include "base/stringprintf.h"
|
| #include "base/utf_string_conversions.h"
|
| #include "base/win/scoped_bstr.h"
|
| +#include "base/win/scoped_handle.h"
|
| #include "base/win/scoped_variant.h"
|
| #include "chrome_frame/test/chrome_frame_test_utils.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| @@ -147,9 +147,8 @@ void IEEventSink::Uninitialize() {
|
| web_browser2_->Quit();
|
| }
|
|
|
| - ScopedHandle process;
|
| - process.Set(OpenProcess(SYNCHRONIZE, FALSE,
|
| - ie_process_id_));
|
| + base::win::ScopedHandle process;
|
| + process.Set(OpenProcess(SYNCHRONIZE, FALSE, ie_process_id_));
|
| web_browser2_.Release();
|
|
|
| if (!process.IsValid()) {
|
|
|