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

Unified Diff: third_party/WebKit/Source/core/dom/SecurityContext.h

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/core/dom/SecurityContext.h
diff --git a/third_party/WebKit/Source/core/dom/SecurityContext.h b/third_party/WebKit/Source/core/dom/SecurityContext.h
index b58abaaaa601cc5ab65ccd59b4fe0c59f027d2b7..7a463f870ae8f37a313b1f785bf9373a1fec35f7 100644
--- a/third_party/WebKit/Source/core/dom/SecurityContext.h
+++ b/third_party/WebKit/Source/core/dom/SecurityContext.h
@@ -78,7 +78,7 @@ class CORE_EXPORT SecurityContext : public GarbageCollectedMixin {
String addressSpaceForBindings() const;
void addInsecureNavigationUpgrade(unsigned hashedHost) {
- m_insecureNavigationsToUpgrade.add(hashedHost);
+ m_insecureNavigationsToUpgrade.insert(hashedHost);
}
InsecureNavigationsSet* insecureNavigationsToUpgrade() {
return &m_insecureNavigationsToUpgrade;
« no previous file with comments | « third_party/WebKit/Source/core/dom/ScriptRunner.cpp ('k') | third_party/WebKit/Source/core/dom/StyleEngine.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698