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

Side by Side Diff: chrome/browser/extensions/api/system_indicator/system_indicator_api.cc

Issue 11361189: Initial skeleton for System Indicator API (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Add manifest parsing and integrate with extension action api handlers. Created 8 years, 1 month 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 unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698