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

Unified Diff: content/browser/frame_host/render_frame_host_impl.h

Issue 1417323006: OOPIFs: Deduplicating MHTML parts across frames. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mhtml-serialization-per-frame
Patch Set: Rebasing... Created 5 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
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 83189d2057f89f10d7be0230b131866350874de9..1b0db9683a887b81c05bd4a90705cee578c6dbb3 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,9 +611,11 @@ class CONTENT_EXPORT RenderFrameHostImpl
void OnDidStartLoading(bool to_different_document);
void OnDidStopLoading();
void OnDidChangeLoadProgress(double load_progress);
- void OnSerializeAsMHTMLResponse(int job_id,
- bool success,
- const std::string& mhtml_boundary_marker);
+ void OnSerializeAsMHTMLResponse(
+ int job_id,
+ bool success,
+ const std::string& mhtml_boundary_marker,
+ const std::set<GURL>& uris_of_generated_mhtml_parts);
#if defined(OS_MACOSX) || defined(OS_ANDROID)
void OnShowPopup(const FrameHostMsg_ShowPopup_Params& params);

Powered by Google App Engine
This is Rietveld 408576698