| Index: chrome_frame/test/test_server.cc
|
| diff --git a/chrome_frame/test/test_server.cc b/chrome_frame/test/test_server.cc
|
| index cca7fe3b428ec16b518e49ac3196bb39311d841b..eb0674e3451266043bb7198bc0693203e000263c 100644
|
| --- a/chrome_frame/test/test_server.cc
|
| +++ b/chrome_frame/test/test_server.cc
|
| @@ -2,11 +2,14 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include "chrome_frame/test/test_server.h"
|
| +
|
| #include <windows.h>
|
| #include <objbase.h>
|
| #include <urlmon.h>
|
|
|
| #include "base/bind.h"
|
| +#include "base/files/memory_mapped_file.h"
|
| #include "base/logging.h"
|
| #include "base/string_number_conversions.h"
|
| #include "base/string_piece.h"
|
| @@ -14,7 +17,6 @@
|
| #include "base/stringprintf.h"
|
| #include "base/utf_string_conversions.h"
|
| #include "chrome_frame/test/chrome_frame_test_utils.h"
|
| -#include "chrome_frame/test/test_server.h"
|
| #include "net/base/tcp_listen_socket.h"
|
| #include "net/base/winsock_init.h"
|
| #include "net/http/http_util.h"
|
| @@ -117,7 +119,7 @@ void FileResponse::WriteContents(net::StreamListenSocket* socket) const {
|
|
|
| size_t FileResponse::ContentLength() const {
|
| if (file_.get() == NULL) {
|
| - file_.reset(new file_util::MemoryMappedFile());
|
| + file_.reset(new base::MemoryMappedFile());
|
| if (!file_->Initialize(file_path_)) {
|
| NOTREACHED();
|
| file_.reset();
|
|
|