OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_EXTENSIONS_API_EXTENSION_ACTION_EXTENSION_BROWSER_ACTIONS
_API_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_EXTENSION_ACTION_EXTENSION_BROWSER_ACTIONS
_API_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_API_EXTENSION_ACTION_EXTENSION_BROWSER_ACTIONS
_API_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_EXTENSION_ACTION_EXTENSION_BROWSER_ACTIONS
_API_H_ |
7 #pragma once | |
8 | 7 |
9 #include "chrome/browser/extensions/api/extension_action/extension_actions_api.h
" | 8 #include "chrome/browser/extensions/api/extension_action/extension_actions_api.h
" |
10 #include "chrome/browser/extensions/extension_function.h" | 9 #include "chrome/browser/extensions/extension_function.h" |
11 #include "chrome/common/extensions/extension_action.h" | 10 #include "chrome/common/extensions/extension_action.h" |
12 | 11 |
13 // | 12 // |
14 // browserAction.* aliases for supported browserActions APIs. | 13 // browserAction.* aliases for supported browserActions APIs. |
15 // | 14 // |
16 | 15 |
17 class BrowserActionSetIconFunction : public ExtensionActionSetIconFunction { | 16 class BrowserActionSetIconFunction : public ExtensionActionSetIconFunction { |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 class BrowserActionGetBadgeBackgroundColorFunction | 83 class BrowserActionGetBadgeBackgroundColorFunction |
85 : public ExtensionActionGetBadgeBackgroundColorFunction { | 84 : public ExtensionActionGetBadgeBackgroundColorFunction { |
86 public: | 85 public: |
87 DECLARE_EXTENSION_FUNCTION_NAME("browserAction.getBadgeBackgroundColor") | 86 DECLARE_EXTENSION_FUNCTION_NAME("browserAction.getBadgeBackgroundColor") |
88 | 87 |
89 protected: | 88 protected: |
90 virtual ~BrowserActionGetBadgeBackgroundColorFunction() {} | 89 virtual ~BrowserActionGetBadgeBackgroundColorFunction() {} |
91 }; | 90 }; |
92 | 91 |
93 #endif // CHROME_BROWSER_EXTENSIONS_API_EXTENSION_ACTION_EXTENSION_BROWSER_ACTI
ONS_API_H_ | 92 #endif // CHROME_BROWSER_EXTENSIONS_API_EXTENSION_ACTION_EXTENSION_BROWSER_ACTI
ONS_API_H_ |
OLD | NEW |