chore: update base::Bind in app module (#17925)
* chore: update base::Bind in app module * fix lint
This commit is contained in:
parent
68f448ee73
commit
e7ef374899
4 changed files with 101 additions and 81 deletions
|
@ -69,7 +69,7 @@ class App : public AtomBrowserClient::Delegate,
|
|||
public content::BrowserChildProcessObserver {
|
||||
public:
|
||||
using FileIconCallback =
|
||||
base::Callback<void(v8::Local<v8::Value>, const gfx::Image&)>;
|
||||
base::RepeatingCallback<void(v8::Local<v8::Value>, const gfx::Image&)>;
|
||||
|
||||
static mate::Handle<App> Create(v8::Isolate* isolate);
|
||||
|
||||
|
@ -133,8 +133,8 @@ class App : public AtomBrowserClient::Delegate,
|
|||
content::ResourceType resource_type,
|
||||
bool strict_enforcement,
|
||||
bool expired_previous_decision,
|
||||
const base::Callback<void(content::CertificateRequestResultType)>&
|
||||
callback) override;
|
||||
const base::RepeatingCallback<
|
||||
void(content::CertificateRequestResultType)>& callback) override;
|
||||
void SelectClientCertificate(
|
||||
content::WebContents* web_contents,
|
||||
net::SSLCertRequestInfo* cert_request_info,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue