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

Unified Diff: chrome/common/extensions/chrome_extensions_client.cc

Issue 2141703003: [Extensions] Clean up renderer channel-related code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dc_feature_no_filter
Patch Set: Test fix Created 4 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/common/chrome_content_client.cc ('k') | chrome/common/extensions/features/feature_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/chrome_extensions_client.cc
diff --git a/chrome/common/extensions/chrome_extensions_client.cc b/chrome/common/extensions/chrome_extensions_client.cc
index a261245bbced8116d515dcc9facd9335866ab3dd..4f85c1f07250bd4d0dd5e44076bb9c3440eb60a8 100644
--- a/chrome/common/extensions/chrome_extensions_client.cc
+++ b/chrome/common/extensions/chrome_extensions_client.cc
@@ -65,9 +65,7 @@ const char kThumbsWhiteListedExtension[] = "khopmbdjffemhegeeobelklnbglcdgfh";
template <class FeatureClass>
SimpleFeature* CreateFeature() {
- SimpleFeature* feature = new FeatureClass();
- feature->set_check_channel(true);
Devlin 2016/07/14 17:32:11 Woohoo, we can indeed remove this.
- return feature;
+ return new FeatureClass();
}
// Mirrors version_info::Channel for histograms.
« no previous file with comments | « chrome/common/chrome_content_client.cc ('k') | chrome/common/extensions/features/feature_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698