Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/browser/extensions/api/synced_notifications_private/synced_noti fications_private_api.h" | |
| 6 | |
| 7 namespace extensions { | |
| 8 namespace api { | |
| 9 | |
| 10 SyncedNotificationsPrivateGetInitialDataFunction:: | |
| 11 SyncedNotificationsPrivateGetInitialDataFunction() { | |
| 12 } | |
| 13 | |
| 14 SyncedNotificationsPrivateGetInitialDataFunction:: | |
| 15 ~SyncedNotificationsPrivateGetInitialDataFunction() { | |
| 16 } | |
| 17 | |
| 18 bool SyncedNotificationsPrivateGetInitialDataFunction::RunImpl() { | |
| 19 SetError("Not Implemented"); | |
| 20 return false; | |
| 21 } | |
| 22 | |
| 23 SyncedNotificationsPrivateUpdateNotificationFunction:: | |
| 24 SyncedNotificationsPrivateUpdateNotificationFunction() { | |
| 25 } | |
| 26 | |
| 27 SyncedNotificationsPrivateUpdateNotificationFunction:: | |
| 28 ~SyncedNotificationsPrivateUpdateNotificationFunction() { | |
| 29 } | |
| 30 | |
| 31 bool SyncedNotificationsPrivateUpdateNotificationFunction::RunImpl() { | |
| 32 // Get parameters | |
|
not at google - send to devlin
2014/05/02 21:37:38
these "Get parameters" comments don't seem helpful
dewittj
2014/05/03 00:07:49
Done.
| |
| 33 scoped_ptr<api::synced_notifications_private::UpdateNotification::Params> | |
| 34 params( | |
| 35 api::synced_notifications_private::UpdateNotification::Params::Create( | |
| 36 *args_)); | |
| 37 EXTENSION_FUNCTION_VALIDATE(params.get()); | |
| 38 | |
| 39 SetError("Not Implemented"); | |
| 40 return false; | |
| 41 } | |
| 42 | |
| 43 SyncedNotificationsPrivateSetRenderContextFunction:: | |
| 44 SyncedNotificationsPrivateSetRenderContextFunction() { | |
| 45 } | |
| 46 | |
| 47 SyncedNotificationsPrivateSetRenderContextFunction:: | |
| 48 ~SyncedNotificationsPrivateSetRenderContextFunction() { | |
| 49 } | |
| 50 | |
| 51 bool SyncedNotificationsPrivateSetRenderContextFunction::RunImpl() { | |
| 52 // Get parameters | |
| 53 scoped_ptr<api::synced_notifications_private::SetRenderContext::Params> | |
| 54 params( | |
| 55 api::synced_notifications_private::SetRenderContext::Params::Create( | |
| 56 *args_)); | |
| 57 EXTENSION_FUNCTION_VALIDATE(params.get()); | |
| 58 | |
| 59 SetError("Not Implemented"); | |
| 60 return false; | |
| 61 } | |
| 62 | |
| 63 } // namespace api | |
| 64 } // namespace extensions | |
| OLD | NEW |