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

Unified Diff: chrome/renderer/extensions/chrome_extensions_dispatcher_delegate.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
« no previous file with comments | « chrome/renderer/chrome_content_renderer_client.cc ('k') | chrome/tools/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/extensions/chrome_extensions_dispatcher_delegate.cc
diff --git a/chrome/renderer/extensions/chrome_extensions_dispatcher_delegate.cc b/chrome/renderer/extensions/chrome_extensions_dispatcher_delegate.cc
index 9f526119fc9677350e99bf9f9884932fb6f6a284..29ead85dc05c3c74cc228efb11dc45a5f944d229 100644
--- a/chrome/renderer/extensions/chrome_extensions_dispatcher_delegate.cc
+++ b/chrome/renderer/extensions/chrome_extensions_dispatcher_delegate.cc
@@ -232,7 +232,7 @@ void ChromeExtensionsDispatcherDelegate::RequireAdditionalModules(
// a webview or appview is created and only then set up the infrastructure.
if (context_type == extensions::Feature::BLESSED_EXTENSION_CONTEXT &&
is_within_platform_app &&
- extensions::GetCurrentChannel() <= chrome::VersionInfo::CHANNEL_DEV &&
+ extensions::GetCurrentChannel() <= version_info::Channel::DEV &&
base::CommandLine::ForCurrentProcess()->HasSwitch(
extensions::switches::kEnableAppWindowControls)) {
module_system->Require("windowControls");
@@ -255,6 +255,5 @@ void ChromeExtensionsDispatcherDelegate::OnActiveExtensionsUpdated(
}
void ChromeExtensionsDispatcherDelegate::SetChannel(int channel) {
- extensions::SetCurrentChannel(
- static_cast<chrome::VersionInfo::Channel>(channel));
+ extensions::SetCurrentChannel(static_cast<version_info::Channel>(channel));
}
« no previous file with comments | « chrome/renderer/chrome_content_renderer_client.cc ('k') | chrome/tools/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698