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

Unified Diff: chrome/browser/extensions/api/dial/dial_api.cc

Issue 2825963003: Rewrite base::Bind to base::BindOnce with base_bind_rewriters in //chrome/browser/extensions (Closed)
Patch Set: Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/api/dial/dial_api.cc
diff --git a/chrome/browser/extensions/api/dial/dial_api.cc b/chrome/browser/extensions/api/dial/dial_api.cc
index dd07c40724f2f2f52af8ac1fab79147dba3fd747..8987ca358d4347abf15bc4a34862a6b71fa1066e 100644
--- a/chrome/browser/extensions/api/dial/dial_api.cc
+++ b/chrome/browser/extensions/api/dial/dial_api.cc
@@ -64,14 +64,14 @@ void DialAPI::OnListenerAdded(const EventListenerInfo& details) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
BrowserThread::PostTask(
BrowserThread::IO, FROM_HERE,
- base::Bind(&DialAPI::NotifyListenerAddedOnIOThread, this));
+ base::BindOnce(&DialAPI::NotifyListenerAddedOnIOThread, this));
}
void DialAPI::OnListenerRemoved(const EventListenerInfo& details) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
BrowserThread::PostTask(
BrowserThread::IO, FROM_HERE,
- base::Bind(&DialAPI::NotifyListenerRemovedOnIOThread, this));
+ base::BindOnce(&DialAPI::NotifyListenerRemovedOnIOThread, this));
}
void DialAPI::NotifyListenerAddedOnIOThread() {
@@ -99,14 +99,16 @@ void DialAPI::FillDialDevice(const media_router::DialDeviceData& device_data,
void DialAPI::OnDialDeviceEvent(const DialRegistry::DeviceList& devices) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
- BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
- base::Bind(&DialAPI::SendEventOnUIThread, this, devices));
+ BrowserThread::PostTask(
+ BrowserThread::UI, FROM_HERE,
+ base::BindOnce(&DialAPI::SendEventOnUIThread, this, devices));
}
void DialAPI::OnDialError(const DialRegistry::DialErrorCode code) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
- BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
- base::Bind(&DialAPI::SendErrorOnUIThread, this, code));
+ BrowserThread::PostTask(
+ BrowserThread::UI, FROM_HERE,
+ base::BindOnce(&DialAPI::SendErrorOnUIThread, this, code));
}
void DialAPI::SendEventOnUIThread(const DialRegistry::DeviceList& devices) {
@@ -204,9 +206,9 @@ bool DialFetchDeviceDescriptionFunction::RunAsync() {
// DialRegistry lives on the IO thread. Hop on over there to get the URL to
// fetch.
BrowserThread::PostTask(BrowserThread::IO, FROM_HERE,
- base::Bind(&DialFetchDeviceDescriptionFunction::
- GetDeviceDescriptionUrlOnIOThread,
- this, params_->device_label));
+ base::BindOnce(&DialFetchDeviceDescriptionFunction::
+ GetDeviceDescriptionUrlOnIOThread,
+ this, params_->device_label));
return true;
}
@@ -217,8 +219,8 @@ void DialFetchDeviceDescriptionFunction::GetDeviceDescriptionUrlOnIOThread(
dial_->dial_registry()->GetDeviceDescriptionURL(label);
BrowserThread::PostTask(
BrowserThread::UI, FROM_HERE,
- base::Bind(&DialFetchDeviceDescriptionFunction::MaybeStartFetch, this,
- device_description_url));
+ base::BindOnce(&DialFetchDeviceDescriptionFunction::MaybeStartFetch, this,
+ device_description_url));
}
void DialFetchDeviceDescriptionFunction::MaybeStartFetch(const GURL& url) {

Powered by Google App Engine
This is Rietveld 408576698