Index: base/files/memory_mapped_file.h |
diff --git a/base/files/memory_mapped_file.h b/base/files/memory_mapped_file.h |
index 96d1d91f9359b8c96c9646a444add20be2555472..9ff29b9fef11c74df2136de44d81efe0bd6034e9 100644 |
--- a/base/files/memory_mapped_file.h |
+++ b/base/files/memory_mapped_file.h |
@@ -28,9 +28,6 @@ class BASE_EXPORT MemoryMappedFile { |
struct BASE_EXPORT Region { |
static const Region kWholeFile; |
- Region(); |
- Region(int64 offset, int64 size); |
- |
bool operator==(const Region& other) const; |
bool operator!=(const Region& other) const; |
@@ -39,10 +36,6 @@ class BASE_EXPORT MemoryMappedFile { |
// Length of the region in bytes. |
int64 size; |
- |
- private: |
- // Used by kWholeFile. |
- Region(base::LinkerInitialized); |
}; |
// Opens an existing file and maps it into memory. Access is restricted to |