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

Unified Diff: base/pending_task.h

Issue 8549017: Attempt to fix Windows shared builder following r110206/r110595 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/pending_task.h
diff --git a/base/pending_task.h b/base/pending_task.h
index 1ae1faddf0c3ebff74a466b24c64412d9dcdce8b..6c1c168780ec3f649a9f6e3e54a34f3f38fcedf6 100644
--- a/base/pending_task.h
+++ b/base/pending_task.h
@@ -8,6 +8,7 @@
#include <queue>
+#include "base/base_export.h"
#include "base/callback.h"
#include "base/location.h"
#include "base/time.h"
@@ -17,7 +18,7 @@ namespace base {
// Contains data about a pending task. Stored in TaskQueue and DelayedTaskQueue
// for use by classes that queue and execute tasks.
-struct PendingTask : public TrackingInfo {
+struct BASE_EXPORT PendingTask : public TrackingInfo {
PendingTask(const tracked_objects::Location& posted_from,
const Closure& task);
PendingTask(const tracked_objects::Location& posted_from,
@@ -44,7 +45,7 @@ struct PendingTask : public TrackingInfo {
// Wrapper around std::queue specialized for PendingTask which adds a Swap
// helper method.
-class TaskQueue : public std::queue<PendingTask> {
+class BASE_EXPORT TaskQueue : public std::queue<PendingTask> {
public:
void Swap(TaskQueue* queue);
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698