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

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: 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 unified diff | Download patch
« no previous file with comments | « Source/web/web.gypi ('k') | public/web/WebPageSerializerClient.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
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(WebFrame*,
92 bool recursive, 92 bool recursive,
93 WebPageSerializerClient*, 93 WebPageSerializerClient*,
94 const WebVector<WebURL>& links, 94 const WebVector<WebURL>& links,
95 const WebVector<WebString>& localPaths, 95 const WebVector<WebString>& localPaths,
96 const WebString& localDirectoryName); 96 const WebString& localDirectoryName);
97
98 // Retrieve all the resource for the passed view, including the main frame
99 // and sub-frames. Returns true if all resources were retrieved
100 // successfully.
101 BLINK_EXPORT static bool retrieveAllResources(WebView*,
102 const WebVector<WebCString>& supportedSchemes,
103 WebVector<WebURL>* resources,
104 WebVector<WebURL>* frames);
105 97
106 // FIXME: The following are here for unit testing purposes. Consider 98 // FIXME: The following are here for unit testing purposes. Consider
107 // changing the unit tests instead. 99 // changing the unit tests instead.
108 100
109 // Generate the META for charset declaration. 101 // Generate the META for charset declaration.
110 BLINK_EXPORT static WebString generateMetaCharsetDeclaration(const WebString & charset); 102 BLINK_EXPORT static WebString generateMetaCharsetDeclaration(const WebString & charset);
111 // Generate the MOTW declaration. 103 // Generate the MOTW declaration.
112 BLINK_EXPORT static WebString generateMarkOfTheWebDeclaration(const WebURL&) ; 104 BLINK_EXPORT static WebString generateMarkOfTheWebDeclaration(const WebURL&) ;
113 // Generate the default base tag declaration. 105 // Generate the default base tag declaration.
114 BLINK_EXPORT static WebString generateBaseTagDeclaration(const WebString& ba seTarget); 106 BLINK_EXPORT static WebString generateBaseTagDeclaration(const WebString& ba seTarget);
115 }; 107 };
116 108
117 } // namespace blink 109 } // namespace blink
118 110
119 #endif 111 #endif
OLDNEW
« no previous file with comments | « Source/web/web.gypi ('k') | public/web/WebPageSerializerClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698