summaryrefslogtreecommitdiff
path: root/third_party/libwebm/common/file_util.h
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/libwebm/common/file_util.h')
-rw-r--r--third_party/libwebm/common/file_util.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/third_party/libwebm/common/file_util.h b/third_party/libwebm/common/file_util.h
deleted file mode 100644
index 0e71eac11..000000000
--- a/third_party/libwebm/common/file_util.h
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright (c) 2016 The WebM project authors. All Rights Reserved.
-//
-// Use of this source code is governed by a BSD-style license
-// that can be found in the LICENSE file in the root of the source
-// tree. An additional intellectual property rights grant can be found
-// in the file PATENTS. All contributing project authors may
-// be found in the AUTHORS file in the root of the source tree.
-#ifndef LIBWEBM_COMMON_FILE_UTIL_H_
-#define LIBWEBM_COMMON_FILE_UTIL_H_
-
-#include <stdint.h>
-
-#include <string>
-
-#include "mkvmuxer/mkvmuxertypes.h" // LIBWEBM_DISALLOW_COPY_AND_ASSIGN()
-
-namespace libwebm {
-
-// Returns a temporary file name.
-std::string GetTempFileName();
-
-// Returns size of file specified by |file_name|, or 0 upon failure.
-uint64_t GetFileSize(const std::string& file_name);
-
-// Manages life of temporary file specified at time of construction. Deletes
-// file upon destruction.
-class TempFileDeleter {
- public:
- TempFileDeleter();
- explicit TempFileDeleter(std::string file_name) : file_name_(file_name) {}
- ~TempFileDeleter();
- const std::string& name() const { return file_name_; }
-
- private:
- std::string file_name_;
- LIBWEBM_DISALLOW_COPY_AND_ASSIGN(TempFileDeleter);
-};
-
-} // namespace libwebm
-
-#endif // LIBWEBM_COMMON_FILE_UTIL_H_ \ No newline at end of file