| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2012 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/declarative/rules_registry_dispatcher.h" |
| 6 |
| 7 #include "base/values.h" |
| 8 |
| 9 namespace extensions { |
| 10 |
| 11 bool AddRulesFunction::RunImpl() { |
| 12 LOG(ERROR) << "RegisterRulesFunction called"; |
| 13 result_.reset(new ListValue()); |
| 14 return true; |
| 15 } |
| 16 |
| 17 bool RemoveRulesFunction::RunImpl() { |
| 18 LOG(ERROR) << "UnregisterRulesFunction called"; |
| 19 result_.reset(new ListValue()); |
| 20 return true; |
| 21 } |
| 22 |
| 23 bool GetRulesFunction::RunImpl() { |
| 24 LOG(ERROR) << "GetRulesFunction called"; |
| 25 return true; |
| 26 } |
| 27 |
| 28 } // namespace extensions |
| OLD | NEW |