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

Unified Diff: components/component_updater/default_component_installer.cc

Issue 2161193003: Use __func__ instead of __FUNCTION__. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resync 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 side-by-side diff with in-line comments
Download patch
Index: components/component_updater/default_component_installer.cc
diff --git a/components/component_updater/default_component_installer.cc b/components/component_updater/default_component_installer.cc
index fa071a20036ead274e2a9d0a2577ae613f87f1ef..92023e8282d99484a0e47cade09c3114056a1c78 100644
--- a/components/component_updater/default_component_installer.cc
+++ b/components/component_updater/default_component_installer.cc
@@ -195,7 +195,7 @@ bool DefaultComponentInstaller::FindPreinstallation(
}
void DefaultComponentInstaller::StartRegistration(ComponentUpdateService* cus) {
- VLOG(1) << __FUNCTION__ << " for " << installer_traits_->GetName();
+ VLOG(1) << __func__ << " for " << installer_traits_->GetName();
DCHECK(task_runner_.get());
DCHECK(task_runner_->RunsTasksOnCurrentThread());
@@ -322,7 +322,7 @@ void DefaultComponentInstaller::UninstallOnTaskRunner() {
void DefaultComponentInstaller::FinishRegistration(
ComponentUpdateService* cus,
const base::Closure& callback) {
- VLOG(1) << __FUNCTION__ << " for " << installer_traits_->GetName();
+ VLOG(1) << __func__ << " for " << installer_traits_->GetName();
DCHECK(thread_checker_.CalledOnValidThread());
if (installer_traits_->CanAutoUpdate()) {
« no previous file with comments | « chrome/installer/util/user_experiment.cc ('k') | components/offline_pages/background/request_coordinator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698