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

Unified Diff: ui/base/resource/data_pack.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 | « media/tools/media_bench/media_bench.cc ('k') | ui/base/resource/data_pack.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/resource/data_pack.h
diff --git a/ui/base/resource/data_pack.h b/ui/base/resource/data_pack.h
index 40913cb978842933d33b81bc95e19ce395fa1094..3935e6b4e7f689f88454acbc489199c1b421261a 100644
--- a/ui/base/resource/data_pack.h
+++ b/ui/base/resource/data_pack.h
@@ -21,11 +21,8 @@
namespace base {
class FilePath;
-class RefCountedStaticMemory;
-}
-
-namespace file_util {
class MemoryMappedFile;
+class RefCountedStaticMemory;
}
namespace ui {
@@ -63,7 +60,7 @@ class UI_EXPORT DataPack : public ResourceHandle {
bool LoadImpl();
// The memory-mapped data.
- scoped_ptr<file_util::MemoryMappedFile> mmap_;
+ scoped_ptr<base::MemoryMappedFile> mmap_;
// Number of resources in the data.
size_t resource_count_;
« no previous file with comments | « media/tools/media_bench/media_bench.cc ('k') | ui/base/resource/data_pack.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698