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

Unified Diff: base/file_util.h

Issue 357003: Move the spellchecker to the renderer.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: rename Created 11 years, 1 month 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 | « no previous file | base/file_util_posix.cc » ('j') | chrome/browser/spellcheck_host.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/file_util.h
===================================================================
--- base/file_util.h (revision 31117)
+++ base/file_util.h (working copy)
@@ -28,6 +28,10 @@
#include "base/string16.h"
#include "base/time.h"
+#if defined(OS_POSIX)
+#include "base/file_descriptor_posix.h"
+#endif
+
namespace base {
class Time;
}
@@ -486,6 +490,10 @@
// the file does not exist, or the memory mapping fails, it will return false.
// Later we may want to allow the user to specify access.
bool Initialize(const FilePath& file_name);
+#if defined(OS_POSIX)
+ // As above, but works with an alreay-opened file.
+ bool Initialize(const base::FileDescriptor& fd);
+#endif
const uint8* data() const { return data_; }
size_t length() const { return length_; }
@@ -498,6 +506,10 @@
// success, false on any kind of failure. This is a helper for Initialize().
bool MapFileToMemory(const FilePath& file_name);
+#if defined(OS_POSIX)
+ bool MapFileToMemoryInternal();
+#endif
+
// Closes all open handles. Later we may want to make this public.
void CloseHandles();
@@ -506,7 +518,7 @@
HANDLE file_mapping_;
#elif defined(OS_POSIX)
// The file descriptor.
- int file_;
+ base::FileDescriptor file_;
#endif
uint8* data_;
size_t length_;
« no previous file with comments | « no previous file | base/file_util_posix.cc » ('j') | chrome/browser/spellcheck_host.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698