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

Unified Diff: base/pending_task.cc

Issue 11095007: add default constructor to PendingTask; compilation fix for VS2012 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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 | « base/pending_task.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/pending_task.cc
diff --git a/base/pending_task.cc b/base/pending_task.cc
index 44eda71c84b96a686eab6e8561c7c474d7c9964b..697610b67718945575949d78462d668bd69bf2f3 100644
--- a/base/pending_task.cc
+++ b/base/pending_task.cc
@@ -8,6 +8,9 @@
namespace base {
+PendingTask::PendingTask() {
+}
Ryan Sleevi 2012/10/08 23:08:42 drive by: Isn't sequence_num uninitialized because
+
PendingTask::PendingTask(const tracked_objects::Location& posted_from,
const base::Closure& task)
: base::TrackingInfo(posted_from, TimeTicks()),
« no previous file with comments | « base/pending_task.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698