| 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
|
|
|