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

Unified Diff: chrome/browser/extensions/test_extension_service.cc

Issue 7775008: Enable sync for the settings from the Extension Settings API. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Review #2 against correct branch Created 9 years, 3 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/browser/extensions/test_extension_service.cc
diff --git a/chrome/browser/extensions/test_extension_service.cc b/chrome/browser/extensions/test_extension_service.cc
index 277e8ea0b9d79c09c8d686b59c84d618054d1f02..248c406ab4c1843519c24c28468829fc80edf3f0 100644
--- a/chrome/browser/extensions/test_extension_service.cc
+++ b/chrome/browser/extensions/test_extension_service.cc
@@ -9,6 +9,12 @@
TestExtensionService::~TestExtensionService() {}
+const std::vector<std::string> TestExtensionService::GetAllExtensionIds(
+ ) const {
+ ADD_FAILURE();
+ return std::vector<std::string>();
+}
+
const ExtensionList* TestExtensionService::extensions() const {
ADD_FAILURE();
return NULL;

Powered by Google App Engine
This is Rietveld 408576698