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

Unified Diff: ceee/ie/plugin/bho/executor_com_unittest.cc

Issue 6126002: Remove base/scoped_handle_win.h stub and fix up all callers to use the new location and namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review Created 9 years, 11 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: 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,

Powered by Google App Engine
This is Rietveld 408576698