Index: chrome/browser/extensions/api/system_info_storage/system_info_storage_api.cc |
diff --git a/chrome/browser/extensions/api/system_info_storage/system_info_storage_api.cc b/chrome/browser/extensions/api/system_info_storage/system_info_storage_api.cc |
index 7c0927a70a8c720ec1a23bee0438dd2d173841b8..cc9d9055b0ab035c16636218edc58214de89edb1 100644 |
--- a/chrome/browser/extensions/api/system_info_storage/system_info_storage_api.cc |
+++ b/chrome/browser/extensions/api/system_info_storage/system_info_storage_api.cc |
@@ -33,4 +33,50 @@ void SystemInfoStorageGetFunction::OnGetStorageInfoCompleted( |
SendResponse(success); |
} |
+SystemInfoStorageAddWatchFunction::SystemInfoStorageAddWatchFunction() { |
+} |
+ |
+SystemInfoStorageAddWatchFunction::~SystemInfoStorageAddWatchFunction() { |
+} |
+ |
+bool SystemInfoStorageAddWatchFunction::RunImpl() { |
+ // TODO(Haojian): Implement the addWatch api. |
+ return false; |
+} |
+ |
+SystemInfoStorageRemoveWatchFunction::SystemInfoStorageRemoveWatchFunction() { |
+} |
+ |
+SystemInfoStorageRemoveWatchFunction::~SystemInfoStorageRemoveWatchFunction() { |
+} |
+ |
+bool SystemInfoStorageRemoveWatchFunction::RunImpl() { |
+ // TODO(Haojian): Implement the removeWatch api. |
+ return false; |
+} |
+ |
+SystemInfoStorageGetAllWatchFunction::SystemInfoStorageGetAllWatchFunction() { |
+} |
+ |
+SystemInfoStorageGetAllWatchFunction::~SystemInfoStorageGetAllWatchFunction() { |
+} |
+ |
+bool SystemInfoStorageGetAllWatchFunction::RunImpl() { |
+ // TODO(Haojian): Implement the getAllWatch api. |
+ return false; |
+} |
+ |
+SystemInfoStorageRemoveAllWatchFunction:: |
+SystemInfoStorageRemoveAllWatchFunction() { |
+} |
+ |
+SystemInfoStorageRemoveAllWatchFunction:: |
+~SystemInfoStorageRemoveAllWatchFunction() { |
+} |
+ |
+bool SystemInfoStorageRemoveAllWatchFunction::RunImpl() { |
+ // TODO(Haojian): Implement the removeAllWatch api. |
+ return false; |
+} |
+ |
} // namespace extensions |