diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-14 16:53:41 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-14 16:53:41 +0000 |
commit | 038d52e1cd7f5ec3eda5c18b4c4437c372ec9c04 (patch) | |
tree | ce06e8884aebf474fcb02170d3af0334567fa8f4 /chrome/browser/printing/print_job_unittest.cc | |
parent | d76d4ebac33dd9df8c3aa361b7902e0a934fde4d (diff) | |
download | chromium_src-038d52e1cd7f5ec3eda5c18b4c4437c372ec9c04.zip chromium_src-038d52e1cd7f5ec3eda5c18b4c4437c372ec9c04.tar.gz chromium_src-038d52e1cd7f5ec3eda5c18b4c4437c372ec9c04.tar.bz2 |
More style nits.
(Working on cleaning chrome/ so hopefully we can lint it by default.)
Review URL: http://codereview.chromium.org/274040
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28971 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/printing/print_job_unittest.cc')
-rw-r--r-- | chrome/browser/printing/print_job_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/printing/print_job_unittest.cc b/chrome/browser/printing/print_job_unittest.cc index 3ef795c..8c79e6a 100644 --- a/chrome/browser/printing/print_job_unittest.cc +++ b/chrome/browser/printing/print_job_unittest.cc @@ -63,7 +63,7 @@ class TestOwner : public printing::PrintJobWorkerOwner { class TestPrintJob : public printing::PrintJob { public: - TestPrintJob(volatile bool* check) : check_(check) { + explicit TestPrintJob(volatile bool* check) : check_(check) { } ~TestPrintJob() { *check_ = true; |