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

Side by Side Diff: chrome/browser/extensions/api/chrome_extensions_api_client.h

Issue 2077723002: [Extensions] Short-circuit activity logging if not enabled (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add Test Created 4 years, 6 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
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 #ifndef CHROME_BROWSER_EXTENSIONS_API_CHROME_EXTENSIONS_API_CLIENT_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_CHROME_EXTENSIONS_API_CLIENT_H_
6 #define CHROME_BROWSER_EXTENSIONS_API_CHROME_EXTENSIONS_API_CLIENT_H_ 6 #define CHROME_BROWSER_EXTENSIONS_API_CHROME_EXTENSIONS_API_CLIENT_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "extensions/browser/api/extensions_api_client.h" 10 #include "extensions/browser/api/extensions_api_client.h"
(...skipping 22 matching lines...) Expand all
33 std::unique_ptr<guest_view::GuestViewManagerDelegate> 33 std::unique_ptr<guest_view::GuestViewManagerDelegate>
34 CreateGuestViewManagerDelegate( 34 CreateGuestViewManagerDelegate(
35 content::BrowserContext* context) const override; 35 content::BrowserContext* context) const override;
36 std::unique_ptr<MimeHandlerViewGuestDelegate> 36 std::unique_ptr<MimeHandlerViewGuestDelegate>
37 CreateMimeHandlerViewGuestDelegate( 37 CreateMimeHandlerViewGuestDelegate(
38 MimeHandlerViewGuest* guest) const override; 38 MimeHandlerViewGuest* guest) const override;
39 WebViewGuestDelegate* CreateWebViewGuestDelegate( 39 WebViewGuestDelegate* CreateWebViewGuestDelegate(
40 WebViewGuest* web_view_guest) const override; 40 WebViewGuest* web_view_guest) const override;
41 WebViewPermissionHelperDelegate* CreateWebViewPermissionHelperDelegate( 41 WebViewPermissionHelperDelegate* CreateWebViewPermissionHelperDelegate(
42 WebViewPermissionHelper* web_view_permission_helper) const override; 42 WebViewPermissionHelper* web_view_permission_helper) const override;
43 WebRequestEventRouterDelegate* CreateWebRequestEventRouterDelegate() 43 std::unique_ptr<WebRequestEventRouterDelegate>
44 const override; 44 CreateWebRequestEventRouterDelegate() const override;
45 scoped_refptr<ContentRulesRegistry> CreateContentRulesRegistry( 45 scoped_refptr<ContentRulesRegistry> CreateContentRulesRegistry(
46 content::BrowserContext* browser_context, 46 content::BrowserContext* browser_context,
47 RulesCacheDelegate* cache_delegate) const override; 47 RulesCacheDelegate* cache_delegate) const override;
48 std::unique_ptr<DevicePermissionsPrompt> CreateDevicePermissionsPrompt( 48 std::unique_ptr<DevicePermissionsPrompt> CreateDevicePermissionsPrompt(
49 content::WebContents* web_contents) const override; 49 content::WebContents* web_contents) const override;
50 std::unique_ptr<VirtualKeyboardDelegate> CreateVirtualKeyboardDelegate() 50 std::unique_ptr<VirtualKeyboardDelegate> CreateVirtualKeyboardDelegate()
51 const override; 51 const override;
52 ManagementAPIDelegate* CreateManagementAPIDelegate() const override; 52 ManagementAPIDelegate* CreateManagementAPIDelegate() const override;
53 53
54 private: 54 private:
55 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionsAPIClient); 55 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionsAPIClient);
56 }; 56 };
57 57
58 } // namespace extensions 58 } // namespace extensions
59 59
60 #endif // CHROME_BROWSER_EXTENSIONS_API_CHROME_EXTENSIONS_API_CLIENT_H_ 60 #endif // CHROME_BROWSER_EXTENSIONS_API_CHROME_EXTENSIONS_API_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698