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

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

Issue 10777003: Refactor APIResourceController to ProfileKeyedService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge/antony/fix build. Created 8 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/browser/extensions/test_extension_system.h ('k') | chrome/browser/usb/usb_device.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/test_extension_system.cc
diff --git a/chrome/browser/extensions/test_extension_system.cc b/chrome/browser/extensions/test_extension_system.cc
index e3f6e25df60ab59a2ba307f658b71b3917833760..2a65c44b795a31b6704f53178aa74635b70fc74e 100644
--- a/chrome/browser/extensions/test_extension_system.cc
+++ b/chrome/browser/extensions/test_extension_system.cc
@@ -132,6 +132,20 @@ RulesRegistryService* TestExtensionSystem::rules_registry_service() {
return NULL;
}
+ApiResourceManager<SerialConnection>*
+TestExtensionSystem::serial_connection_manager() {
+ return NULL;
+}
+
+ApiResourceManager<Socket>*TestExtensionSystem::socket_manager() {
+ return NULL;
+}
+
+ApiResourceManager<UsbDeviceResource>*
+TestExtensionSystem::usb_device_resource_manager() {
+ return NULL;
+}
+
// static
ProfileKeyedService* TestExtensionSystem::Build(Profile* profile) {
return new TestExtensionSystem(profile);
« no previous file with comments | « chrome/browser/extensions/test_extension_system.h ('k') | chrome/browser/usb/usb_device.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698