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

Unified Diff: chrome/browser/chromeos/file_system_provider/queue.cc

Issue 813403005: [fsp] Fix unhappy MSAN build bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | « chrome/browser/chromeos/file_system_provider/queue.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/file_system_provider/queue.cc
diff --git a/chrome/browser/chromeos/file_system_provider/queue.cc b/chrome/browser/chromeos/file_system_provider/queue.cc
index 75032081857c64f44fbc525b3ae8b885f4b72011..883917f519b561a4b7e989d93e2ddef191ec8d2f 100644
--- a/chrome/browser/chromeos/file_system_provider/queue.cc
+++ b/chrome/browser/chromeos/file_system_provider/queue.cc
@@ -12,16 +12,15 @@
namespace chromeos {
namespace file_system_provider {
-struct Queue::Task {
- Task() : token(0), completed(false) {}
- Task(size_t token, const AbortableCallback& callback)
- : token(token), completed(false), callback(callback) {}
-
- size_t token;
- bool completed;
- AbortableCallback callback;
- AbortCallback abort_callback;
-};
+Queue::Task::Task() : token(0), completed(false) {
+}
+
+Queue::Task::Task(size_t token, const AbortableCallback& callback)
+ : token(token), completed(false), callback(callback) {
+}
+
+Queue::Task::~Task() {
+}
Queue::Queue(size_t max_in_parallel)
: max_in_parallel_(max_in_parallel),
« no previous file with comments | « chrome/browser/chromeos/file_system_provider/queue.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698