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

Unified Diff: chrome/browser/extensions/chrome_notification_observer.cc

Issue 1257633002: Componentize VersionInfo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Convert version_info::Channel to a "class enum" Created 5 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: 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,

Powered by Google App Engine
This is Rietveld 408576698