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

Unified Diff: content/common/frame_messages.h

Issue 1308113008: OOPIFs: Transitioning Get/Send...SavableResourceLinks away from RenderViewHost. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@page-serialization-test
Patch Set: Fixed 2 minor issues caught during a late self-review. Created 5 years, 3 months 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/common/frame_messages.h
diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h
index 28f27db5245bbcb1507885ac71efa58a66915e4e..e8d272ad9820b8bd366d829b25a9e99c1a3921cc 100644
--- a/content/common/frame_messages.h
+++ b/content/common/frame_messages.h
@@ -1022,6 +1022,13 @@ IPC_MESSAGE_ROUTED0(FrameHostMsg_DispatchLoad)
IPC_MESSAGE_ROUTED1(FrameHostMsg_RouteMessageEvent,
FrameMsg_PostMessage_Params)
+// Messages for getting savable resource links from frames into the browser.
nasko 2015/09/02 23:45:55 nit: s/into/to/
Łukasz Anforowicz 2015/09/03 16:59:57 N/A after moving the messages (and having a separa
+IPC_MESSAGE_ROUTED0(FrameMsg_GetSavableResourceLinks)
nasko 2015/09/02 23:45:55 Please keep FrameMsg messages (which means browser
Łukasz Anforowicz 2015/09/03 16:59:57 Done.
+IPC_MESSAGE_ROUTED0(FrameHostMsg_NonSavableResponse)
nasko 2015/09/02 23:45:55 Put a comment explaining what this message is abou
Łukasz Anforowicz 2015/09/03 16:59:57 Done.
+IPC_MESSAGE_ROUTED2(FrameHostMsg_SavableResourceLinksResponse,
+ std::vector<GURL> /* savable resource links */,
+ std::vector<content::Referrer> /* referrers */)
+
#if defined(OS_MACOSX) || defined(OS_ANDROID)
// Message to show/hide a popup menu using native controls.

Powered by Google App Engine
This is Rietveld 408576698