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

Unified Diff: net/test/test_server.h

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: net/test/test_server.h
diff --git a/net/test/test_server.h b/net/test/test_server.h
index 9686aef55aaae29351a47c91e7f0e5182f0d4cf0..6d93fc8709fb6a9b5ad510c306687ee510af541d 100644
--- a/net/test/test_server.h
+++ b/net/test/test_server.h
@@ -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.
@@ -20,7 +20,7 @@
#include "net/base/net_util.h"
#if defined(OS_WIN)
-#include "base/scoped_handle_win.h"
+#include "base/win/scoped_handle.h"
#endif
class CommandLine;
@@ -177,13 +177,13 @@ class TestServer {
#if defined(OS_WIN)
// JobObject used to clean up orphaned child processes.
- ScopedHandle job_handle_;
+ base::win::ScopedHandle job_handle_;
// The pipe file handle we read from.
- ScopedHandle child_read_fd_;
+ base::win::ScopedHandle child_read_fd_;
// The pipe file handle the child and we write to.
- ScopedHandle child_write_fd_;
+ base::win::ScopedHandle child_write_fd_;
#endif
#if defined(OS_POSIX)

Powered by Google App Engine
This is Rietveld 408576698