Index: chrome/common/render_messages.h |
diff --git a/chrome/common/render_messages.h b/chrome/common/render_messages.h |
index 516f8a21fe9f54b6b56f3e6ef7ce9dbab74eda8f..93e505e4d8eccf2615cd573346bc27c5ce274e87 100644 |
--- a/chrome/common/render_messages.h |
+++ b/chrome/common/render_messages.h |
@@ -430,16 +430,16 @@ IPC_SYNC_MESSAGE_CONTROL4_1(ChromeViewHostMsg_GetPluginInfo, |
ChromeViewHostMsg_GetPluginInfo_Output /* output */) |
#if defined(ENABLE_PEPPER_CDMS) |
-// Returns whether any internal plugin supporting |mime_type| is registered |
+// Returns whether any internal plugin supporting |mime_type| is available. |
ddorwin
2014/07/21 17:54:58
Should we update these comments per my suggestions
xhwang
2014/07/21 18:16:42
Done.
|
// Does not determine whether the plugin can actually be instantiated |
-// (e.g. whether it is allowed or has all its dependencies). |
-// When the returned *|is_registered| is true, |additional_param_names| and |
+// (e.g. whether it has all its dependencies). |
+// When the returned *|is_available| is true, |additional_param_names| and |
// |additional_param_values| contain the name-value pairs, if any, specified |
-// for the *first* plugin found that is registered for |mime_type|. |
+// for the *first* non-disabled plugin found that is registered for |mime_type|. |
IPC_SYNC_MESSAGE_CONTROL1_3( |
- ChromeViewHostMsg_IsInternalPluginRegisteredForMimeType, |
+ ChromeViewHostMsg_IsInternalPluginAvailableForMimeType, |
std::string /* mime_type */, |
- bool /* registered */, |
+ bool /* available */, |
ddorwin
2014/07/21 17:54:58
nit: is_available?
xhwang
2014/07/21 18:16:42
Done.
|
std::vector<base::string16> /* additional_param_names */, |
std::vector<base::string16> /* additional_param_values */) |
#endif |