Index: components/nacl/renderer/plugin/temporary_file.cc |
diff --git a/components/nacl/renderer/plugin/temporary_file.cc b/components/nacl/renderer/plugin/temporary_file.cc |
index 6a79e771129cd046cd8c3e528e8b020380074b48..babc33ca1a4a57e12e9a13728fe0a6246db14e47 100644 |
--- a/components/nacl/renderer/plugin/temporary_file.cc |
+++ b/components/nacl/renderer/plugin/temporary_file.cc |
@@ -64,4 +64,8 @@ PP_FileHandle TempFile::TakeFileHandle() { |
return file_handle_.TakePlatformFile(); |
} |
+PP_FileHandle TempFile::GetFileHandle() { |
bbudge
2015/12/16 20:30:06
DCHECK(file_handle_.IsValid()); ?
Mark Seaborn
2015/12/17 06:09:56
OK. How about I put the same into TakeFileHandle(
bbudge
2015/12/17 19:10:21
sgtm
|
+ return file_handle_.GetPlatformFile(); |
+} |
+ |
} // namespace plugin |