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

Unified Diff: chrome/browser/android/chrome_feature_list.cc

Issue 2755673005: [Android] Trigger native event batching through Feature API (Closed)
Patch Set: Add back "abstract" Created 3 years, 9 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 | « no previous file | content/browser/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/android/chrome_feature_list.cc
diff --git a/chrome/browser/android/chrome_feature_list.cc b/chrome/browser/android/chrome_feature_list.cc
index 43eaf422812e81c3d9ae835ad550f559047a805c..ad0e6557361a2dc30aa783ab62405792f43742b9 100644
--- a/chrome/browser/android/chrome_feature_list.cc
+++ b/chrome/browser/android/chrome_feature_list.cc
@@ -85,8 +85,8 @@ const base::Feature* FindFeatureExposedToJava(const std::string& feature_name) {
if (kFeaturesExposedToJava[i]->name == feature_name)
return kFeaturesExposedToJava[i];
}
- NOTREACHED() << "Features queried via ChromeFeatureList must be present in "
- "|kFeaturesExposedToJava|.";
+ NOTREACHED() << "Queried feature cannot be found in ChromeFeatureList: "
+ << feature_name;
return nullptr;
}
« no previous file with comments | « no previous file | content/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698