Index: ceee/ie/plugin/bho/executor_com_unittest.cc |
diff --git a/ceee/ie/plugin/bho/executor_com_unittest.cc b/ceee/ie/plugin/bho/executor_com_unittest.cc |
index 8478825700ec9449947cc09a00fd815472f6fc5a..61d5a47ce60c4e42793affe72b7b5c20109324cc 100644 |
--- a/ceee/ie/plugin/bho/executor_com_unittest.cc |
+++ b/ceee/ie/plugin/bho/executor_com_unittest.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,6 +8,7 @@ |
#include <shlobj.h> |
#include <atlbase.h> |
+ |
#include "base/command_line.h" |
#include "base/file_path.h" |
#include "base/message_loop.h" |
@@ -15,6 +16,7 @@ |
#include "base/process_util.h" |
#include "base/threading/thread.h" |
#include "base/win/registry.h" |
+#include "base/win/scoped_handle.h" |
#include "base/win/windows_version.h" |
#include "ceee/common/initializing_coclass.h" |
#include "ceee/ie/plugin/toolband/toolband_proxy.h" |
@@ -159,7 +161,7 @@ class RemoteObjectHost { |
} |
void RunSync(Task* task) { |
- ScopedHandle event(::CreateEvent(NULL, TRUE, FALSE, NULL)); |
+ base::win::ScopedHandle event(::CreateEvent(NULL, TRUE, FALSE, NULL)); |
remote_thread_.message_loop()->PostTask(FROM_HERE, task); |
remote_thread_.message_loop()->PostTask(FROM_HERE, |