OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 EXTENSIONS_BROWSER_API_EXTENSIONS_API_CLIENT_H_ | 5 #ifndef EXTENSIONS_BROWSER_API_EXTENSIONS_API_CLIENT_H_ |
6 #define EXTENSIONS_BROWSER_API_EXTENSIONS_API_CLIENT_H_ | 6 #define EXTENSIONS_BROWSER_API_EXTENSIONS_API_CLIENT_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 // returned WebViewGuestDelegate. | 79 // returned WebViewGuestDelegate. |
80 virtual WebViewGuestDelegate* CreateWebViewGuestDelegate ( | 80 virtual WebViewGuestDelegate* CreateWebViewGuestDelegate ( |
81 WebViewGuest* web_view_guest) const; | 81 WebViewGuest* web_view_guest) const; |
82 | 82 |
83 // Returns a delegate for some of WebViewPermissionHelper's behavior. The | 83 // Returns a delegate for some of WebViewPermissionHelper's behavior. The |
84 // caller owns the returned WebViewPermissionHelperDelegate. | 84 // caller owns the returned WebViewPermissionHelperDelegate. |
85 virtual WebViewPermissionHelperDelegate* | 85 virtual WebViewPermissionHelperDelegate* |
86 CreateWebViewPermissionHelperDelegate ( | 86 CreateWebViewPermissionHelperDelegate ( |
87 WebViewPermissionHelper* web_view_permission_helper) const; | 87 WebViewPermissionHelper* web_view_permission_helper) const; |
88 | 88 |
| 89 // TODO(wjmaclean): Remove this as soon as rules_registry_service.* moves to |
| 90 // extensions/browser/api/declarative/. |
| 91 virtual scoped_refptr<RulesRegistry> GetRulesRegistry( |
| 92 content::BrowserContext* browser_context, |
| 93 const RulesRegistry::WebViewKey& webview_key, |
| 94 const std::string& event_name); |
| 95 |
89 // Creates a delegate for WebRequestEventRouter. | 96 // Creates a delegate for WebRequestEventRouter. |
90 virtual WebRequestEventRouterDelegate* CreateWebRequestEventRouterDelegate() | 97 virtual WebRequestEventRouterDelegate* CreateWebRequestEventRouterDelegate() |
91 const; | 98 const; |
92 | 99 |
93 // TODO(wjmaclean): Remove this when (if) ContentRulesRegistry code moves | 100 // TODO(wjmaclean): Remove this when (if) ContentRulesRegistry code moves |
94 // to extensions/browser/api. | 101 // to extensions/browser/api. |
95 virtual scoped_refptr<ContentRulesRegistry> CreateContentRulesRegistry( | 102 virtual scoped_refptr<ContentRulesRegistry> CreateContentRulesRegistry( |
96 content::BrowserContext* browser_context, | 103 content::BrowserContext* browser_context, |
97 RulesCacheDelegate* cache_delegate) const; | 104 RulesCacheDelegate* cache_delegate) const; |
98 | 105 |
99 // NOTE: If this interface gains too many methods (perhaps more than 20) it | 106 // NOTE: If this interface gains too many methods (perhaps more than 20) it |
100 // should be split into one interface per API. | 107 // should be split into one interface per API. |
101 }; | 108 }; |
102 | 109 |
103 } // namespace extensions | 110 } // namespace extensions |
104 | 111 |
105 #endif // EXTENSIONS_BROWSER_API_EXTENSIONS_API_CLIENT_H_ | 112 #endif // EXTENSIONS_BROWSER_API_EXTENSIONS_API_CLIENT_H_ |
OLD | NEW |