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

Unified Diff: chrome/common/render_messages_internal.h

Issue 6020017: Mac: Enable "Check Spelling While Typing" in Edit menu... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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: chrome/common/render_messages_internal.h
===================================================================
--- chrome/common/render_messages_internal.h (revision 70404)
+++ chrome/common/render_messages_internal.h (working copy)
@@ -2629,3 +2629,11 @@
// Updates the content restrictions, i.e. to disable print/copy.
IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateContentRestrictions,
int /* restrictions */)
+
+// Message sent from renderer to the browser to update the state of a command.
+// The |state| parameter specifies the unchecked, checked, and mixed state of
+// the command.
+IPC_MESSAGE_ROUTED3(ViewHostMsg_CommandStateChanged,
+ std::string /* command_name */,
+ bool /* is_enabled */,
+ int /* checked_state */)

Powered by Google App Engine
This is Rietveld 408576698