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

Side by Side Diff: content/shell/browser/shell_content_browser_client.h

Issue 2104193002: Geolocation: Extract GeolocationProvider::Delegate into GeolocationDelegate (no new code) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: jam@ nit: content/browser/geolocation/geolocation_delegate.cc --> content/public/browser Created 4 years, 5 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_
6 #define CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ 6 #define CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 10
(...skipping 25 matching lines...) Expand all
36 bool DoesSiteRequireDedicatedProcess(BrowserContext* browser_context, 36 bool DoesSiteRequireDedicatedProcess(BrowserContext* browser_context,
37 const GURL& effective_url) override; 37 const GURL& effective_url) override;
38 bool IsHandledURL(const GURL& url) override; 38 bool IsHandledURL(const GURL& url) override;
39 void RegisterInProcessMojoApplications( 39 void RegisterInProcessMojoApplications(
40 StaticMojoApplicationMap* apps) override; 40 StaticMojoApplicationMap* apps) override;
41 void RegisterOutOfProcessMojoApplications( 41 void RegisterOutOfProcessMojoApplications(
42 OutOfProcessMojoApplicationMap* apps) override; 42 OutOfProcessMojoApplicationMap* apps) override;
43 void AppendExtraCommandLineSwitches(base::CommandLine* command_line, 43 void AppendExtraCommandLineSwitches(base::CommandLine* command_line,
44 int child_process_id) override; 44 int child_process_id) override;
45 void ResourceDispatcherHostCreated() override; 45 void ResourceDispatcherHostCreated() override;
46 GeolocationProvider::Delegate* CreateGeolocationDelegate() override; 46 GeolocationDelegate* CreateGeolocationDelegate() override;
47 std::string GetDefaultDownloadName() override; 47 std::string GetDefaultDownloadName() override;
48 WebContentsViewDelegate* GetWebContentsViewDelegate( 48 WebContentsViewDelegate* GetWebContentsViewDelegate(
49 WebContents* web_contents) override; 49 WebContents* web_contents) override;
50 QuotaPermissionContext* CreateQuotaPermissionContext() override; 50 QuotaPermissionContext* CreateQuotaPermissionContext() override;
51 void SelectClientCertificate( 51 void SelectClientCertificate(
52 WebContents* web_contents, 52 WebContents* web_contents,
53 net::SSLCertRequestInfo* cert_request_info, 53 net::SSLCertRequestInfo* cert_request_info,
54 std::unique_ptr<ClientCertificateDelegate> delegate) override; 54 std::unique_ptr<ClientCertificateDelegate> delegate) override;
55 55
56 SpeechRecognitionManagerDelegate* CreateSpeechRecognitionManagerDelegate() 56 SpeechRecognitionManagerDelegate* CreateSpeechRecognitionManagerDelegate()
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 resource_dispatcher_host_delegate_; 111 resource_dispatcher_host_delegate_;
112 112
113 base::Closure select_client_certificate_callback_; 113 base::Closure select_client_certificate_callback_;
114 114
115 ShellBrowserMainParts* shell_browser_main_parts_; 115 ShellBrowserMainParts* shell_browser_main_parts_;
116 }; 116 };
117 117
118 } // namespace content 118 } // namespace content
119 119
120 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ 120 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « content/public/browser/geolocation_provider.cc ('k') | content/shell/browser/shell_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698