Index: chrome/browser/extensions/chrome_notification_observer.cc |
diff --git a/chrome/browser/extensions/chrome_notification_observer.cc b/chrome/browser/extensions/chrome_notification_observer.cc |
index c8e6016350809013f0f49a33923be8baf46fd21d..5b53a0ef00bedb804f4fcdb710d79d98008463b6 100644 |
--- a/chrome/browser/extensions/chrome_notification_observer.cc |
+++ b/chrome/browser/extensions/chrome_notification_observer.cc |
@@ -24,7 +24,8 @@ void ChromeNotificationObserver::OnRendererProcessCreated( |
content::RenderProcessHost* process) { |
// Extensions need to know the channel for API restrictions. Send the channel |
// to all renderers, as the non-extension renderers may have content scripts. |
- process->Send(new ExtensionMsg_SetChannel(GetCurrentChannel())); |
+ process->Send( |
+ new ExtensionMsg_SetChannel(static_cast<int>(GetCurrentChannel()))); |
} |
void ChromeNotificationObserver::Observe(int type, |