| Index: net/tools/dump_cache/upgrade.cc
|
| diff --git a/net/tools/dump_cache/upgrade.cc b/net/tools/dump_cache/upgrade.cc
|
| index fae924cafe30de9535985dce38775cb99813ba6f..7b862377c9e11dc98172ab94af42c491d2a6ee9a 100644
|
| --- a/net/tools/dump_cache/upgrade.cc
|
| +++ b/net/tools/dump_cache/upgrade.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.
|
|
|
| @@ -9,6 +9,7 @@
|
| #include "base/string_number_conversions.h"
|
| #include "base/string_util.h"
|
| #include "base/threading/thread.h"
|
| +#include "base/win/scoped_handle.h"
|
| #include "googleurl/src/gurl.h"
|
| #include "net/base/io_buffer.h"
|
| #include "net/base/test_completion_callback.h"
|
| @@ -912,7 +913,7 @@ int CopyCache(const std::wstring& output_path, HANDLE pipe, bool copy_to_text) {
|
| int RunSlave(const std::wstring& input_path, const std::wstring& pipe_number) {
|
| MessageLoop loop(MessageLoop::TYPE_IO);
|
|
|
| - ScopedHandle pipe(OpenServer(pipe_number));
|
| + base::win::ScopedHandle pipe(OpenServer(pipe_number));
|
| if (!pipe.IsValid()) {
|
| printf("Unable to open the server pipe\n");
|
| return -1;
|
|
|