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

Unified Diff: ppapi/native_client/src/trusted/plugin/temporary_file.h

Issue 393693004: Pepper: Delete FileDownloader in trusted plugin. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: STL fix Created 6 years, 5 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
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..a58879bb578b11f5f3cc2cd764a3f66485eb8a42 100644
--- a/ppapi/native_client/src/trusted/plugin/temporary_file.h
+++ b/ppapi/native_client/src/trusted/plugin/temporary_file.h
@@ -36,7 +36,7 @@ class Plugin;
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 +55,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);

Powered by Google App Engine
This is Rietveld 408576698