Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Side by Side Diff: extensions/browser/api/extensions_api_client.cc

Issue 590573002: Remove ContentRulesRegistry dependence from RulesRegistryService. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix comment. Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « extensions/browser/api/extensions_api_client.h ('k') | extensions/extensions.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 WebRequestEventRouterDelegate* 65 WebRequestEventRouterDelegate*
66 ExtensionsAPIClient::CreateWebRequestEventRouterDelegate() const { 66 ExtensionsAPIClient::CreateWebRequestEventRouterDelegate() const {
67 return NULL; 67 return NULL;
68 } 68 }
69 69
70 scoped_refptr<ContentRulesRegistry>
71 ExtensionsAPIClient::CreateContentRulesRegistry(
72 content::BrowserContext* browser_context,
73 RulesCacheDelegate* cache_delegate) const {
74 return scoped_refptr<ContentRulesRegistry>();
75 }
76
70 } // namespace extensions 77 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/browser/api/extensions_api_client.h ('k') | extensions/extensions.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698