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

Unified Diff: chrome/browser/extensions/api/system_info_storage/system_info_storage_api.cc

Issue 15815002: [SystemInfo API] Add Storage Watch API Definition. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 7 years, 6 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/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

Powered by Google App Engine
This is Rietveld 408576698