| Index: net/tools/dump_cache/dump_cache.cc
|
| diff --git a/net/tools/dump_cache/dump_cache.cc b/net/tools/dump_cache/dump_cache.cc
|
| index 3561fb78e90abc4e5c8dba146b5e8be67a39cb72..53dd121ea147a5f4a60166443a31fd6aee25b47a 100644
|
| --- a/net/tools/dump_cache/dump_cache.cc
|
| +++ b/net/tools/dump_cache/dump_cache.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.
|
|
|
| @@ -11,10 +11,9 @@
|
| #include "base/at_exit.h"
|
| #include "base/command_line.h"
|
| #include "base/process_util.h"
|
| -#include "base/scoped_handle.h"
|
| #include "base/string_util.h"
|
| #include "base/stringprintf.h"
|
| -
|
| +#include "base/win/scoped_handle.h"
|
| #include "net/disk_cache/disk_format.h"
|
|
|
| enum Errors {
|
| @@ -156,7 +155,7 @@ int main(int argc, const char* argv[]) {
|
| if (command_line.HasSwitch(kSlave) && slave_required)
|
| return RunSlave(input_path, pipe_number);
|
|
|
| - ScopedHandle server;
|
| + base::win::ScopedHandle server;
|
| if (slave_required) {
|
| server.Set(CreateServer(&pipe_number));
|
| if (!server.IsValid()) {
|
|
|