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 #ifndef CHROME_BROWSER_EXTENSIONS_API_SYSTEM_INDICATOR_SYSTEM_INDICATOR_API_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_API_SYSTEM_INDICATOR_SYSTEM_INDICATOR_API_H_ |
| 7 |
| 8 #include "chrome/browser/extensions/extension_function.h" |
| 9 |
| 10 namespace extensions { |
| 11 |
| 12 class SystemIndicatorSetIconURLFunction : public SyncExtensionFunction { |
| 13 public: |
| 14 SystemIndicatorSetIconURLFunction(); |
| 15 DECLARE_EXTENSION_FUNCTION_NAME("experimental.systemIndicator.setIconURL") |
| 16 |
| 17 protected: |
| 18 virtual ~SystemIndicatorSetIconURLFunction() {} |
| 19 |
| 20 virtual bool RunImpl() OVERRIDE; |
| 21 }; |
| 22 |
| 23 class SystemIndicatorSetIconDataFunction : public SyncExtensionFunction { |
| 24 public: |
| 25 SystemIndicatorSetIconDataFunction(); |
| 26 DECLARE_EXTENSION_FUNCTION_NAME("experimental.systemIndicator.setIconData") |
| 27 |
| 28 protected: |
| 29 virtual ~SystemIndicatorSetIconDataFunction() {} |
| 30 |
| 31 virtual bool RunImpl() OVERRIDE; |
| 32 }; |
| 33 |
| 34 class SystemIndicatorSetMenuFunction : public SyncExtensionFunction { |
| 35 public: |
| 36 SystemIndicatorSetMenuFunction(); |
| 37 DECLARE_EXTENSION_FUNCTION_NAME("experimental.systemIndicator.setMenu") |
| 38 |
| 39 protected: |
| 40 virtual ~SystemIndicatorSetMenuFunction() {} |
| 41 |
| 42 virtual bool RunImpl() OVERRIDE; |
| 43 }; |
| 44 |
| 45 class SystemIndicatorShowFunction : public SyncExtensionFunction { |
| 46 public: |
| 47 SystemIndicatorShowFunction(); |
| 48 DECLARE_EXTENSION_FUNCTION_NAME("experimental.systemIndicator.show") |
| 49 |
| 50 protected: |
| 51 virtual ~SystemIndicatorShowFunction() {} |
| 52 |
| 53 virtual bool RunImpl() OVERRIDE; |
| 54 }; |
| 55 |
| 56 class SystemIndicatorHideFunction : public SyncExtensionFunction { |
| 57 public: |
| 58 SystemIndicatorHideFunction(); |
| 59 DECLARE_EXTENSION_FUNCTION_NAME("experimental.systemIndicator.hide"); |
| 60 |
| 61 protected: |
| 62 virtual ~SystemIndicatorHideFunction() {} |
| 63 |
| 64 virtual bool RunImpl() OVERRIDE; |
| 65 }; |
| 66 |
| 67 } // namespace extensions |
| 68 |
| 69 #endif // CHROME_BROWSER_EXTENSIONS_API_SYSTEM_INDICATOR_SYSTEM_INDICATOR_API_H
_ |
OLD | NEW |