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

Unified Diff: net/base/file_stream_whence.h

Issue 323683002: net: FileStream cleanup (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add DCHECK, fix ASSERT message Created 6 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
Index: net/base/file_stream_whence.h
diff --git a/net/base/file_stream_whence.h b/net/base/file_stream_whence.h
deleted file mode 100644
index a962341f93d2241d209a0bcd786748fd0b3d59f8..0000000000000000000000000000000000000000
--- a/net/base/file_stream_whence.h
+++ /dev/null
@@ -1,20 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef NET_BASE_FILE_STREAM_WHENCE_H_
-#define NET_BASE_FILE_STREAM_WHENCE_H_
-
-namespace net {
-
-// TODO(darin): Move this to a more generic location.
-// This explicit mapping matches both FILE_ on Windows and SEEK_ on Linux.
-enum Whence {
- FROM_BEGIN = 0,
- FROM_CURRENT = 1,
- FROM_END = 2
-};
-
-} // namespace net
-
-#endif // NET_BASE_FILE_STREAM_WHENCE_H_

Powered by Google App Engine
This is Rietveld 408576698