Index: ppapi/native_client/src/trusted/plugin/temporary_file.h |
diff --git a/ppapi/native_client/src/trusted/plugin/temporary_file.h b/ppapi/native_client/src/trusted/plugin/temporary_file.h |
index 4bc8f7140e389054d1d6e7d84408c0a5e342acbb..e492668bb5b9ee8d0d95e85b58a6338f4578c45b 100644 |
--- a/ppapi/native_client/src/trusted/plugin/temporary_file.h |
+++ b/ppapi/native_client/src/trusted/plugin/temporary_file.h |
@@ -35,8 +35,7 @@ class Plugin; |
// of the file between sessions. |
class TempFile { |
public: |
- // Create a TempFile. |
- explicit TempFile(Plugin* plugin); |
+ TempFile(Plugin* plugin, PP_FileHandle handle); |
~TempFile(); |
// Opens a temporary file object and descriptor wrapper referring to the file. |
@@ -55,9 +54,6 @@ class TempFile { |
// and all wrappers. |
PP_FileHandle TakeFileHandle(); |
- // Used by GetNexeFd() to set the underlying internal handle. |
- PP_FileHandle* internal_handle() { return &internal_handle_; } |
- |
private: |
NACL_DISALLOW_COPY_AND_ASSIGN(TempFile); |