| Index: content/child/npapi/plugin_stream_posix.cc
|
| diff --git a/content/child/npapi/plugin_stream_posix.cc b/content/child/npapi/plugin_stream_posix.cc
|
| index 478126888ad92c7870a61799e52b2f0c15fd01ab..b84a6d9d0ca47e6a5bb016669eaba9484acbbbc0 100644
|
| --- a/content/child/npapi/plugin_stream_posix.cc
|
| +++ b/content/child/npapi/plugin_stream_posix.cc
|
| @@ -33,7 +33,7 @@ size_t PluginStream::WriteBytes(const char* buf, size_t length) {
|
| bool PluginStream::OpenTempFile() {
|
| DCHECK_EQ(static_cast<FILE*>(NULL), temp_file_);
|
|
|
| - if (file_util::CreateTemporaryFile(&temp_file_path_))
|
| + if (base::CreateTemporaryFile(&temp_file_path_))
|
| temp_file_ = file_util::OpenFile(temp_file_path_, "a");
|
|
|
| if (!temp_file_) {
|
|
|