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

Unified Diff: content/common/view_messages.h

Issue 7633071: Remove references to prerender and instant in content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove whitespace Created 9 years, 4 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
« no previous file with comments | « content/browser/tab_contents/tab_contents.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/view_messages.h
diff --git a/content/common/view_messages.h b/content/common/view_messages.h
index da0687c5b65d16bd3c50eaf1e0f0cdfbc60f7294..b7c95af70ee1afccb4d88f0542ca99e82b3dc3d4 100644
--- a/content/common/view_messages.h
+++ b/content/common/view_messages.h
@@ -748,16 +748,15 @@ IPC_STRUCT_END()
IPC_MESSAGE_CONTROL1(ViewMsg_SetNextPageID,
int32 /* next_page_id */)
-// Sent to the RenderView when a prerendered or instant page is committed
-// to an existing tab. The existing tab has a history of
-// |merged_history_length| which precedes the current history of pages
-// in the render view. All page_ids >= |minimum_page_id| are appended to
-// this new history in the same order.
+// Sent to the RenderView when a new tab is swapped into an existing
+// tab and the histories need to be merged. The existing tab has a history of
+// |merged_history_length| which precedes the history of the new tab. All
+// page_ids >= |minimum_page_id| in the new tab are appended to the history.
//
-// For example, suppose the history of page_ids in the instant RenderView
-// is [4 7 8]. This instant RenderView is committed, and merged into
-// an existing tab with 3 history items, with every page with page_id >= 7
-// is preserved. The resulting page history is [-1 -1 -1 7 8].
+// For example, suppose the history of page_ids in the new tab's RenderView
+// is [4 7 8]. This is merged into an existing tab with 3 history items, and
+// all pages in the new tab with page_id >= 7 are to be preserved.
+// The resulting page history is [-1 -1 -1 7 8].
IPC_MESSAGE_ROUTED2(ViewMsg_SetHistoryLengthAndPrune,
int, /* merge_history_length */
int32 /* minimum_page_id */)
« no previous file with comments | « content/browser/tab_contents/tab_contents.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698