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

Unified Diff: Source/core/page/PageSerializer.h

Issue 68613003: Merges the two different page serializers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove newline after XML decl Created 7 years 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 | « Source/core/editing/MarkupAccumulator.h ('k') | Source/core/page/PageSerializer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/PageSerializer.h
diff --git a/Source/core/page/PageSerializer.h b/Source/core/page/PageSerializer.h
index 745af7e72d24270f65590a8f648568ccf87b2a4e..191dad504257277fbf83e371cd391b956a9c6064 100644
--- a/Source/core/page/PageSerializer.h
+++ b/Source/core/page/PageSerializer.h
@@ -55,11 +55,15 @@ class StyleRuleFontFace;
struct SerializedResource;
+// This hash map is used to map resource URL of original link to its local
+// file path.
+typedef HashMap<String, String> LinkLocalPathMap;
+
// This class is used to serialize a page contents back to text (typically HTML).
// It serializes all the page frames and retrieves resources such as images and CSS stylesheets.
class PageSerializer {
public:
- explicit PageSerializer(Vector<SerializedResource>*);
+ PageSerializer(Vector<SerializedResource>*, LinkLocalPathMap* = 0, String directory = "");
// Initiates the serialization of the frame's page. All serialized content and retrieved
// resources are added to the Vector passed to the constructor. The first resource in that
@@ -87,6 +91,8 @@ private:
Vector<SerializedResource>* m_resources;
ListHashSet<KURL> m_resourceURLs;
HashMap<Frame*, KURL> m_blankFrameURLs;
+ LinkLocalPathMap* m_URLs;
+ String m_directory;
unsigned m_blankFrameCounter;
};
« no previous file with comments | « Source/core/editing/MarkupAccumulator.h ('k') | Source/core/page/PageSerializer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698