| 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 | 9 |
| 10 namespace extensions { | 10 namespace extensions { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 return NULL; | 53 return NULL; |
| 54 } | 54 } |
| 55 | 55 |
| 56 scoped_refptr<RulesRegistry> ExtensionsAPIClient::GetRulesRegistry( | 56 scoped_refptr<RulesRegistry> ExtensionsAPIClient::GetRulesRegistry( |
| 57 content::BrowserContext* browser_context, | 57 content::BrowserContext* browser_context, |
| 58 const RulesRegistry::WebViewKey& webview_key, | 58 const RulesRegistry::WebViewKey& webview_key, |
| 59 const std::string& event_name) { | 59 const std::string& event_name) { |
| 60 return scoped_refptr<RulesRegistry>(); | 60 return scoped_refptr<RulesRegistry>(); |
| 61 } | 61 } |
| 62 | 62 |
| 63 WebRequestEventRouterDelegate* ExtensionsAPIClient:: |
| 64 CreateWebRequestEventRouterDelegate() const { |
| 65 return NULL; |
| 66 } |
| 67 |
| 63 } // namespace extensions | 68 } // namespace extensions |
| OLD | NEW |