Chromium Code Reviews| 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/system_indicator/system_indicator_api.h" | |
| 6 | |
| 7 #include "base/values.h" | |
| 8 #include "chrome/browser/extensions/extension_service.h" | |
| 9 #include "chrome/browser/extensions/extension_system.h" | |
| 10 #include "chrome/browser/profiles/profile.h" | |
| 11 #include "chrome/common/extensions/api/system_indicator.h" | |
| 12 | |
| 13 namespace extensions { | |
| 14 | |
| 15 bool SystemIndicatorEnableFunction::ValidateArguments() { | |
| 16 // No arguments besides the callback. | |
| 17 return true; | |
|
not at google - send to devlin
2012/11/21 23:39:23
oh I didn't realise the reason for the change to V
dewittj
2012/11/26 18:32:58
Done.
| |
| 18 } | |
| 19 | |
| 20 bool SystemIndicatorDisableFunction::ValidateArguments() { | |
| 21 // No arguments besides the callback. | |
| 22 return true; | |
| 23 } | |
| 24 | |
| 25 } // namespace extensions | |
| OLD | NEW |