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

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: Created 7 years, 7 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..04f276931abde8b8433ddec20cfa51a08a12637f 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
@@ -1,6 +1,7 @@
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+
#include "chrome/browser/extensions/api/system_info_storage/system_info_storage_api.h"
namespace extensions {
@@ -33,4 +34,50 @@ void SystemInfoStorageGetFunction::OnGetStorageInfoCompleted(
SendResponse(success);
}
+SystemInfoStorageAddWatchFunction::SystemInfoStorageAddWatchFunction() {
+}
+
+SystemInfoStorageAddWatchFunction::~SystemInfoStorageAddWatchFunction() {
+}
+
+bool SystemInfoStorageAddWatchFunction::RunImpl() {
+ // TODO(Haojian): Implement the addWatch api.
+ return false;
+}
+
+SystemInfoStorageGetAllWatchFunction::SystemInfoStorageGetAllWatchFunction() {
+}
+
+SystemInfoStorageGetAllWatchFunction::~SystemInfoStorageGetAllWatchFunction() {
+}
+
+bool SystemInfoStorageGetAllWatchFunction::RunImpl() {
+ // TODO(Haojian): Implement the getAllWatch api.
+ return false;
+}
+
+SystemInfoStorageRemoveWatchFunction::SystemInfoStorageRemoveWatchFunction() {
+}
+
+SystemInfoStorageRemoveWatchFunction::~SystemInfoStorageRemoveWatchFunction() {
+}
+
+bool SystemInfoStorageRemoveWatchFunction::RunImpl() {
+ // TODO(Haojian): Implement the removeWatch 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