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

Unified Diff: webrtc/base/file.cc

Issue 2877023002: Move webrtc/{base => rtc_base} (Closed)
Patch Set: update presubmit.py and DEPS include rules Created 3 years, 6 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
« no previous file with comments | « webrtc/base/file.h ('k') | webrtc/base/file_posix.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/file.cc
diff --git a/webrtc/base/file.cc b/webrtc/base/file.cc
deleted file mode 100644
index 983eb8b8da673fdb849b87c0782dcaa9d67e6f36..0000000000000000000000000000000000000000
--- a/webrtc/base/file.cc
+++ /dev/null
@@ -1,94 +0,0 @@
-/*
- * Copyright (c) 2016 The WebRTC 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.
- */
-
-#include "webrtc/base/file.h"
-
-#include <utility>
-
-namespace rtc {
-
-namespace {
-
-std::string NormalizePathname(Pathname&& path) {
- path.Normalize();
- return path.pathname();
-}
-
-} // namespace
-
-File::File(PlatformFile file) : file_(file) {}
-
-File::File() : file_(kInvalidPlatformFileValue) {}
-
-File::~File() {
- Close();
-}
-
-// static
-File File::Open(const std::string& path) {
- return File(OpenPlatformFile(path));
-}
-
-// static
-File File::Open(Pathname&& path) {
- return Open(NormalizePathname(std::move(path)));
-}
-
-// static
-File File::Open(const Pathname& path) {
- return Open(Pathname(path));
-}
-
-// static
-File File::Create(const std::string& path) {
- return File(CreatePlatformFile(path));
-}
-
-// static
-File File::Create(Pathname&& path) {
- return Create(NormalizePathname(std::move(path)));
-}
-
-// static
-File File::Create(const Pathname& path) {
- return Create(Pathname(path));
-}
-
-// static
-bool File::Remove(const std::string& path) {
- return RemoveFile(path);
-}
-
-// static
-bool File::Remove(Pathname&& path) {
- return Remove(NormalizePathname(std::move(path)));
-}
-
-// static
-bool File::Remove(const Pathname& path) {
- return Remove(Pathname(path));
-}
-
-File::File(File&& other) : file_(other.file_) {
- other.file_ = kInvalidPlatformFileValue;
-}
-
-File& File::operator=(File&& other) {
- Close();
- file_ = other.file_;
- other.file_ = kInvalidPlatformFileValue;
- return *this;
-}
-
-bool File::IsOpen() {
- return file_ != kInvalidPlatformFileValue;
-}
-
-} // namespace rtc
« no previous file with comments | « webrtc/base/file.h ('k') | webrtc/base/file_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698