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_DECLARATIVE_DECLARATIVE_API_H_ | 5 #ifndef EXTENSIONS_BROWSER_API_DECLARATIVE_DECLARATIVE_API_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_DECLARATIVE_API_H_ | 6 #define EXTENSIONS_BROWSER_API_DECLARATIVE_DECLARATIVE_API_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "chrome/browser/extensions/api/declarative/rules_registry.h" | 10 #include "extensions/browser/api/declarative/rules_registry.h" |
11 #include "chrome/browser/extensions/chrome_extension_function.h" | 11 #include "extensions/browser/extension_function.h" |
12 | 12 |
13 namespace extensions { | 13 namespace extensions { |
14 | 14 |
15 class RulesFunction : public ChromeAsyncExtensionFunction { | 15 class RulesFunction : public AsyncExtensionFunction { |
16 public: | 16 public: |
17 RulesFunction(); | 17 RulesFunction(); |
18 | 18 |
19 protected: | 19 protected: |
20 virtual ~RulesFunction(); | 20 virtual ~RulesFunction(); |
21 | 21 |
22 // ExtensionFunction: | 22 // ExtensionFunction: |
23 virtual bool HasPermission() OVERRIDE; | 23 virtual bool HasPermission() OVERRIDE; |
24 virtual bool RunAsync() OVERRIDE; | 24 virtual bool RunAsync() OVERRIDE; |
25 | 25 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 | 59 |
60 protected: | 60 protected: |
61 virtual ~EventsEventGetRulesFunction() {} | 61 virtual ~EventsEventGetRulesFunction() {} |
62 | 62 |
63 // RulesFunction: | 63 // RulesFunction: |
64 virtual bool RunAsyncOnCorrectThread() OVERRIDE; | 64 virtual bool RunAsyncOnCorrectThread() OVERRIDE; |
65 }; | 65 }; |
66 | 66 |
67 } // namespace extensions | 67 } // namespace extensions |
68 | 68 |
69 #endif // CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_DECLARATIVE_API_H_ | 69 #endif // EXTENSIONS_BROWSER_API_DECLARATIVE_DECLARATIVE_API_H_ |
OLD | NEW |