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

Unified Diff: net/base/upload_progress.h

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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 | « net/base/upload_file_element_reader_unittest.cc ('k') | net/base/url_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/upload_progress.h
diff --git a/net/base/upload_progress.h b/net/base/upload_progress.h
deleted file mode 100644
index 0620009085dab830454283d22b884e5ed720c46e..0000000000000000000000000000000000000000
--- a/net/base/upload_progress.h
+++ /dev/null
@@ -1,28 +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_UPLOAD_PROGRESS_H_
-#define NET_BASE_UPLOAD_PROGRESS_H_
-
-#include "base/basictypes.h"
-
-namespace net {
-
-class UploadProgress {
- public:
- UploadProgress() : size_(0), position_(0) {}
- UploadProgress(uint64 position, uint64 size)
- : size_(size), position_(position) {}
-
- uint64 size() const { return size_; }
- uint64 position() const { return position_; }
-
- private:
- uint64 size_;
- uint64 position_;
-};
-
-} // namespace net
-
-#endif // NET_BASE_UPLOAD_PROGRESS_H_
« no previous file with comments | « net/base/upload_file_element_reader_unittest.cc ('k') | net/base/url_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698