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

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

Issue 12253022: Manifest handler for all keys background-related. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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/common/extensions/manifest_handler_unittest.cc
diff --git a/chrome/common/extensions/manifest_handler_unittest.cc b/chrome/common/extensions/manifest_handler_unittest.cc
index dec16eb04922fb75b9a022b516a10e3aaca0da7b..12179c42d3960befa4eebdbc9a0abb36ea9fc145 100644
--- a/chrome/common/extensions/manifest_handler_unittest.cc
+++ b/chrome/common/extensions/manifest_handler_unittest.cc
@@ -63,7 +63,7 @@ class ManifestHandlerTest : public testing::Test {
return true;
}
- virtual const std::vector<std::string>& PrerequisiteKeys() OVERRIDE {
+ virtual const std::vector<std::string>& PrerequisiteKeys() const OVERRIDE {
return prereqs_;
}
@@ -94,7 +94,7 @@ class ManifestHandlerTest : public testing::Test {
: TestManifestHandler(name, prereqs, watcher) {
}
- virtual bool AlwaysParseForType(Manifest::Type type) OVERRIDE {
+ virtual bool AlwaysParseForType(Manifest::Type type) const OVERRIDE {
return true;
}
};

Powered by Google App Engine
This is Rietveld 408576698