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

Unified Diff: content/renderer/hyphenator/hyphenator.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 | « content/common/gpu/media/h264_parser_unittest.cc ('k') | content/renderer/hyphenator/hyphenator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/hyphenator/hyphenator.h
diff --git a/content/renderer/hyphenator/hyphenator.h b/content/renderer/hyphenator/hyphenator.h
index 517e49f7358cf783307092ae84028492087f8f05..879f76ce3ed860232ac29113e4c6e3ad0cd8b619 100644
--- a/content/renderer/hyphenator/hyphenator.h
+++ b/content/renderer/hyphenator/hyphenator.h
@@ -14,7 +14,7 @@
#include "content/public/renderer/render_process_observer.h"
#include "ipc/ipc_platform_file.h"
-namespace file_util {
+namespace base {
class MemoryMappedFile;
}
@@ -63,7 +63,7 @@ class CONTENT_EXPORT Hyphenator : public RenderProcessObserver {
// it without opening the file.)
string16 locale_;
base::PlatformFile rule_file_;
- scoped_ptr<file_util::MemoryMappedFile> rule_map_;
+ scoped_ptr<base::MemoryMappedFile> rule_map_;
// A cached result. WebKit often calls ComputeLastHyphenLocation with the same
// word multiple times to find the best hyphenation point when it finds a line
« no previous file with comments | « content/common/gpu/media/h264_parser_unittest.cc ('k') | content/renderer/hyphenator/hyphenator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698