| 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 cc190ac2106e830739cdb2ff2114d9fd7d5d0176..07f78db945f4060f75a779051439e0d56b8c9298 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.h
|
| +++ b/content/browser/frame_host/render_frame_host_impl.h
|
| @@ -9,6 +9,7 @@
|
| #include <stdint.h>
|
|
|
| #include <map>
|
| +#include <set>
|
| #include <string>
|
| #include <vector>
|
|
|
| @@ -620,7 +621,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<std::string>& digests_of_uris_of_serialized_resources);
|
|
|
| #if defined(OS_MACOSX) || defined(OS_ANDROID)
|
| void OnShowPopup(const FrameHostMsg_ShowPopup_Params& params);
|
|
|