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

Side by Side Diff: public/web/WebPageSerializer.h

Issue 68613003: Merges the two different page serializers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 1 month 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 // The parameter recursive specifies whether we need to 81 // The parameter recursive specifies whether we need to
82 // serialize all sub frames of the specified frame or not. 82 // serialize all sub frames of the specified frame or not.
83 // The parameter client specifies the pointer of interface 83 // The parameter client specifies the pointer of interface
84 // WebPageSerializerClient providing a sink interface to receive the 84 // WebPageSerializerClient providing a sink interface to receive the
85 // individual chunks of data to be saved. 85 // individual chunks of data to be saved.
86 // The parameter links contain original URLs of all saved links. 86 // The parameter links contain original URLs of all saved links.
87 // The parameter localPaths contain corresponding local file paths of all 87 // The parameter localPaths contain corresponding local file paths of all
88 // saved links, which matched with vector:links one by one. 88 // saved links, which matched with vector:links one by one.
89 // The parameter localDirectoryName is relative path of directory which 89 // The parameter localDirectoryName is relative path of directory which
90 // contain all saved auxiliary files included all sub frames and resources. 90 // contain all saved auxiliary files included all sub frames and resources.
91 BLINK_EXPORT static bool serialize(WebFrame*, 91 BLINK_EXPORT static bool serialize(WebView*,
92 bool recursive, 92 WebPageSerializerClient*, const WebVector<WebURL>& links,
93 WebPageSerializerClient*, 93 const WebVector<WebString>& localPaths,
94 const WebVector<WebURL>& links, 94 const WebString& localDirectoryName);
95 const WebVector<WebString>& localPaths,
96 const WebString& localDirectoryName);
97 95
98 // Retrieve all the resource for the passed view, including the main frame 96 // Retrieve all the resource for the passed view, including the main frame
99 // and sub-frames. Returns true if all resources were retrieved 97 // and sub-frames. Returns true if all resources were retrieved
100 // successfully. 98 // successfully.
101 BLINK_EXPORT static bool retrieveAllResources(WebView*, 99 BLINK_EXPORT static bool retrieveAllResources(WebView*,
102 const WebVector<WebCString>& supportedSchemes, 100 const WebVector<WebCString>& supportedSchemes,
103 WebVector<WebURL>* resources, 101 WebVector<WebURL>* resources, WebVector<WebURL>* frames);
104 WebVector<WebURL>* frames);
105
106 // FIXME: The following are here for unit testing purposes. Consider
107 // changing the unit tests instead.
108
109 // Generate the META for charset declaration.
110 BLINK_EXPORT static WebString generateMetaCharsetDeclaration(const WebString & charset);
111 // Generate the MOTW declaration.
112 BLINK_EXPORT static WebString generateMarkOfTheWebDeclaration(const WebURL&) ;
113 // Generate the default base tag declaration.
114 BLINK_EXPORT static WebString generateBaseTagDeclaration(const WebString& ba seTarget);
115 }; 102 };
116 103
117 } // namespace blink 104 } // namespace blink
118 105
119 #endif 106 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698