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

Unified Diff: third_party/WebKit/Source/platform/scheduler/base/task_queue_impl.h

Issue 2836853003: scheduler: Use PLATFORM_EXPORT instead of BLINK_PLATFORM_EXPORT (Closed)
Patch Set: Rebased Created 3 years, 8 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: third_party/WebKit/Source/platform/scheduler/base/task_queue_impl.h
diff --git a/third_party/WebKit/Source/platform/scheduler/base/task_queue_impl.h b/third_party/WebKit/Source/platform/scheduler/base/task_queue_impl.h
index 928150038eb341fd3f9c7738f5336ff53d3187cb..c7ac4beff3e992ca6c0eedd306be5f7ba8a22608 100644
--- a/third_party/WebKit/Source/platform/scheduler/base/task_queue_impl.h
+++ b/third_party/WebKit/Source/platform/scheduler/base/task_queue_impl.h
@@ -57,7 +57,7 @@ class WorkQueueSets;
// queue is selected, it round-robins between the immediate_work_queue and
// delayed_work_queue. The reason for this is we want to make sure delayed
// tasks (normally the most common type) don't starve out immediate work.
-class BLINK_PLATFORM_EXPORT TaskQueueImpl final : public TaskQueue {
+class PLATFORM_EXPORT TaskQueueImpl final : public TaskQueue {
public:
TaskQueueImpl(TaskQueueManager* task_queue_manager,
TimeDomain* time_domain,
@@ -80,7 +80,7 @@ class BLINK_PLATFORM_EXPORT TaskQueueImpl final : public TaskQueue {
}
};
- class BLINK_PLATFORM_EXPORT Task : public base::PendingTask {
+ class PLATFORM_EXPORT Task : public base::PendingTask {
public:
Task();
Task(const tracked_objects::Location& posted_from,

Powered by Google App Engine
This is Rietveld 408576698