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

Unified Diff: content/common/view_messages.h

Issue 7453050: Plumb the title direction up to the renderer host (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 9 years, 5 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/view_messages.h
diff --git a/content/common/view_messages.h b/content/common/view_messages.h
index 13e675e35db2dfaeb2d7f4b27a2dae7359280cd5..df1ac83db70eace77658b61310991fada6675f63 100644
--- a/content/common/view_messages.h
+++ b/content/common/view_messages.h
@@ -164,6 +164,7 @@ IPC_ENUM_TRAITS(ViewMsg_StopFinding_Params::Action)
IPC_ENUM_TRAITS(WebKit::WebContextMenuData::MediaType)
IPC_ENUM_TRAITS(WebKit::WebMediaPlayerAction::Type)
IPC_ENUM_TRAITS(WebKit::WebPopupType)
+IPC_ENUM_TRAITS(WebKit::WebTextDirection)
IPC_ENUM_TRAITS(ui::TextInputType)
IPC_ENUM_TRAITS(WebMenuItem::Type)
IPC_ENUM_TRAITS(WindowContainerType)
@@ -1369,9 +1370,10 @@ IPC_MESSAGE_ROUTED1(ViewHostMsg_DidFinishLoad,
// Changes the title for the page in the UI when the page is navigated or the
// title changes.
-IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateTitle,
- int32,
- string16)
+IPC_MESSAGE_ROUTED3(ViewHostMsg_UpdateTitle,
+ int32 /* page_id */,
+ string16 /* title */,
+ WebKit::WebTextDirection /* title direction */)
// Changes the icon url for the page in the UI.
IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateIconURL,

Powered by Google App Engine
This is Rietveld 408576698