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

Unified Diff: third_party/WebKit/Source/modules/webdatabase/DatabaseAuthorizer.h

Issue 2142513003: Use initializer_lists for static WTF::HashSets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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/webdatabase/DatabaseAuthorizer.h
diff --git a/third_party/WebKit/Source/modules/webdatabase/DatabaseAuthorizer.h b/third_party/WebKit/Source/modules/webdatabase/DatabaseAuthorizer.h
index 81bfd4fea749f41d00595bfff5255f41ce335ed7..c6125282767a9320ef49e68731a0ba5eeec206c3 100644
--- a/third_party/WebKit/Source/modules/webdatabase/DatabaseAuthorizer.h
+++ b/third_party/WebKit/Source/modules/webdatabase/DatabaseAuthorizer.h
@@ -30,8 +30,6 @@
#include "platform/heap/Handle.h"
#include "wtf/Forward.h"
-#include "wtf/HashSet.h"
-#include "wtf/text/StringHash.h"
#include "wtf/text/WTFString.h"
namespace blink {
@@ -116,8 +114,6 @@ private:
bool m_hadDeletes : 1;
const String m_databaseInfoTableName;
-
- HashSet<String, CaseFoldingHash> m_whitelistedFunctions;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698