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

Unified Diff: third_party/WebKit/Source/core/frame/FrameSerializer.h

Issue 1778713004: No need for ListHashSet<> in FrameSerializer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/frame/FrameSerializer.h
diff --git a/third_party/WebKit/Source/core/frame/FrameSerializer.h b/third_party/WebKit/Source/core/frame/FrameSerializer.h
index 0c63b68759bbec873845097959af7c4457d2e5a7..9aaf155303aa327a2b38ecb37bc3f76ff5d6ceef 100644
--- a/third_party/WebKit/Source/core/frame/FrameSerializer.h
+++ b/third_party/WebKit/Source/core/frame/FrameSerializer.h
@@ -35,10 +35,9 @@
#include "platform/heap/Handle.h"
#include "platform/weborigin/KURL.h"
#include "platform/weborigin/KURLHash.h"
-#include "wtf/ListHashSet.h"
-#include "wtf/PassOwnPtr.h"
+#include "wtf/Forward.h"
+#include "wtf/HashSet.h"
#include "wtf/Vector.h"
-#include "wtf/text/WTFString.h"
namespace blink {
@@ -126,7 +125,7 @@ private:
void retrieveResourcesForCSSValue(CSSValue*, Document&);
Vector<SerializedResource>* m_resources;
- ListHashSet<KURL> m_resourceURLs;
+ HashSet<KURL> m_resourceURLs;
Delegate& m_delegate;
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698