| 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 #include "extensions/browser/api/extensions_api_client.h" | 5 #include "extensions/browser/api/extensions_api_client.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "extensions/browser/guest_view/mime_handler_view/mime_handler_view_gues
t_delegate.h" | 8 #include "extensions/browser/guest_view/mime_handler_view/mime_handler_view_gues
t_delegate.h" |
| 9 #include "extensions/browser/guest_view/web_view/web_view_permission_helper_dele
gate.h" | 9 #include "extensions/browser/guest_view/web_view/web_view_permission_helper_dele
gate.h" |
| 10 | 10 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 return new WebViewPermissionHelperDelegate(web_view_permission_helper); | 55 return new WebViewPermissionHelperDelegate(web_view_permission_helper); |
| 56 } | 56 } |
| 57 | 57 |
| 58 scoped_refptr<RulesRegistry> ExtensionsAPIClient::GetRulesRegistry( | 58 scoped_refptr<RulesRegistry> ExtensionsAPIClient::GetRulesRegistry( |
| 59 content::BrowserContext* browser_context, | 59 content::BrowserContext* browser_context, |
| 60 const RulesRegistry::WebViewKey& webview_key, | 60 const RulesRegistry::WebViewKey& webview_key, |
| 61 const std::string& event_name) { | 61 const std::string& event_name) { |
| 62 return scoped_refptr<RulesRegistry>(); | 62 return scoped_refptr<RulesRegistry>(); |
| 63 } | 63 } |
| 64 | 64 |
| 65 scoped_refptr<RulesRegistry> ExtensionsAPIClient::GetContentRulesRegistry( |
| 66 content::BrowserContext* browser_context, |
| 67 RulesCacheDelegate* cache_delegate) const { |
| 68 return scoped_refptr<RulesRegistry>(); |
| 69 } |
| 70 |
| 71 ContentRulesRegistry* ExtensionsAPIClient::ConvertToContentRulesRegistryPtr( |
| 72 RulesRegistry* rules_registry) const { |
| 73 return NULL; |
| 74 } |
| 75 |
| 65 } // namespace extensions | 76 } // namespace extensions |
| OLD | NEW |