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

Unified Diff: chrome_frame/test/test_server.h

Issue 12321062: base: Move MemoryMappedFile out of file_util.h and into its own header file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chrome_frame again Created 7 years, 10 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
« no previous file with comments | « chrome_frame/test/navigation_test.cc ('k') | chrome_frame/test/test_server.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test/test_server.h
diff --git a/chrome_frame/test/test_server.h b/chrome_frame/test/test_server.h
index 48fd4b7e85f4e96d4c36481a08efbef408c660b2..d4f9281879a71295e8278bc64b096702f6104300 100644
--- a/chrome_frame/test/test_server.h
+++ b/chrome_frame/test/test_server.h
@@ -39,7 +39,8 @@
#include <string>
#include "base/basictypes.h"
-#include "base/file_util.h"
+#include "base/file_path.h"
+#include "base/files/memory_mapped_file.h"
#include "base/message_loop.h"
#include "net/base/stream_listen_socket.h"
@@ -251,7 +252,7 @@ class FileResponse : public ResponseForPath {
protected:
base::FilePath file_path_;
- mutable scoped_ptr<file_util::MemoryMappedFile> file_;
+ mutable scoped_ptr<base::MemoryMappedFile> file_;
private:
DISALLOW_COPY_AND_ASSIGN(FileResponse);
« no previous file with comments | « chrome_frame/test/navigation_test.cc ('k') | chrome_frame/test/test_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698