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

Unified Diff: third_party/WebKit/Source/modules/time_zone_monitor/TimeZoneMonitorClient.cpp

Issue 2657443005: Migrate WTF::HashSet::add() to ::insert() [part 1 of N] (Closed)
Patch Set: Created 3 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
Index: third_party/WebKit/Source/modules/time_zone_monitor/TimeZoneMonitorClient.cpp
diff --git a/third_party/WebKit/Source/modules/time_zone_monitor/TimeZoneMonitorClient.cpp b/third_party/WebKit/Source/modules/time_zone_monitor/TimeZoneMonitorClient.cpp
index a383c046f6e6385e4672e13c154d4eb1e55b8b5e..decda185d23d51171492a9f1166ccb33acae28ab 100644
--- a/third_party/WebKit/Source/modules/time_zone_monitor/TimeZoneMonitorClient.cpp
+++ b/third_party/WebKit/Source/modules/time_zone_monitor/TimeZoneMonitorClient.cpp
@@ -73,7 +73,7 @@ void TimeZoneMonitorClient::OnTimeZoneChange(const String& timeZoneInfo) {
thread->postTask(BLINK_FROM_HERE,
crossThreadBind(&NotifyTimezoneChangeOnWorkerThread,
WTF::crossThreadUnretained(thread)));
- posted.add(&thread->workerBackingThread());
+ posted.insert(&thread->workerBackingThread());
}
}

Powered by Google App Engine
This is Rietveld 408576698