| Index: content/browser/frame_host/render_frame_host_impl.h
|
| diff --git a/content/browser/frame_host/render_frame_host_impl.h b/content/browser/frame_host/render_frame_host_impl.h
|
| index 3508bbeeb37435920e86b2da52d1157decf05170..f853bc294e606b01be3a859cb6bc09de668835a9 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.h
|
| +++ b/content/browser/frame_host/render_frame_host_impl.h
|
| @@ -6,6 +6,7 @@
|
| #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
|
|
|
| #include <map>
|
| +#include <set>
|
| #include <string>
|
| #include <vector>
|
|
|
| @@ -610,7 +611,10 @@ class CONTENT_EXPORT RenderFrameHostImpl
|
| void OnDidStartLoading(bool to_different_document);
|
| void OnDidStopLoading();
|
| void OnDidChangeLoadProgress(double load_progress);
|
| - void OnSerializeAsMHTMLResponse(int job_id, bool success);
|
| + void OnSerializeAsMHTMLResponse(
|
| + int job_id,
|
| + bool success,
|
| + const std::set<GURL>& uris_of_serialized_resources);
|
|
|
| #if defined(OS_MACOSX) || defined(OS_ANDROID)
|
| void OnShowPopup(const FrameHostMsg_ShowPopup_Params& params);
|
|
|