Move channel-related (Chrome-specific) global state out of Feature.
BUG=162530
Review URL: https://chromiumcodereview.appspot.com/22299009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216613 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/browser/extensions/extension_service.cc b/chrome/browser/extensions/extension_service.cc
index 0bdc3f5..f64decb9 100644
--- a/chrome/browser/extensions/extension_service.cc
+++ b/chrome/browser/extensions/extension_service.cc
@@ -80,7 +80,7 @@
#include "chrome/common/extensions/extension_manifest_constants.h"
#include "chrome/common/extensions/extension_messages.h"
#include "chrome/common/extensions/feature_switch.h"
-#include "chrome/common/extensions/features/feature.h"
+#include "chrome/common/extensions/features/feature_channel.h"
#include "chrome/common/extensions/incognito_handler.h"
#include "chrome/common/extensions/manifest.h"
#include "chrome/common/extensions/manifest_handlers/app_isolation_info.h"
@@ -2819,7 +2819,7 @@
// Extensions need to know the channel for API restrictions.
process->Send(new ExtensionMsg_SetChannel(
- extensions::Feature::GetCurrentChannel()));
+ extensions::GetCurrentChannel()));
// Platform apps need to know the system font.
scoped_ptr<base::DictionaryValue> fonts(new base::DictionaryValue);