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

Unified Diff: third_party/WebKit/Source/modules/presentation/PresentationController.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/presentation/PresentationController.cpp
diff --git a/third_party/WebKit/Source/modules/presentation/PresentationController.cpp b/third_party/WebKit/Source/modules/presentation/PresentationController.cpp
index f661e7bd12d1afd8a01214d2af31566982b67cfd..8f1646e683235f4ff7a705cd3eeabb34cc658623 100644
--- a/third_party/WebKit/Source/modules/presentation/PresentationController.cpp
+++ b/third_party/WebKit/Source/modules/presentation/PresentationController.cpp
@@ -132,7 +132,7 @@ void PresentationController::setDefaultRequestUrl(
void PresentationController::registerConnection(
PresentationConnection* connection) {
- m_connections.add(connection);
+ m_connections.insert(connection);
}
void PresentationController::contextDestroyed(ExecutionContext*) {

Powered by Google App Engine
This is Rietveld 408576698