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

Unified Diff: chrome/installer/test/resource_updater.cc

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_frame2 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
Index: chrome/installer/test/resource_updater.cc
diff --git a/chrome/installer/test/resource_updater.cc b/chrome/installer/test/resource_updater.cc
index 2deb3014ed448a471eed1de233a5c7465730338d..169fa72c443d4a28f7d8a29bcd7eadbf8cc0153c 100644
--- a/chrome/installer/test/resource_updater.cc
+++ b/chrome/installer/test/resource_updater.cc
@@ -7,7 +7,7 @@
#include <windows.h>
#include "base/file_path.h"
-#include "base/file_util.h"
+#include "base/files/memory_mapped_file.h"
#include "base/logging.h"
namespace upgrade_test {
@@ -39,7 +39,7 @@ bool ResourceUpdater::Update(const std::wstring& name,
WORD language_id,
const base::FilePath& input_file) {
DCHECK(handle_ != NULL);
- file_util::MemoryMappedFile input;
+ base::MemoryMappedFile input;
if (input.Initialize(input_file)) {
if (UpdateResource(handle_, type.c_str(), name.c_str(), language_id,

Powered by Google App Engine
This is Rietveld 408576698