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

Unified Diff: chrome/browser/download/download_browsertest.cc

Issue 7477008: Remove explicit keyword from multi-argument constructors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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: chrome/browser/download/download_browsertest.cc
diff --git a/chrome/browser/download/download_browsertest.cc b/chrome/browser/download/download_browsertest.cc
index 2f5ca58d62af4d9b4e4f1ab61210458b364aaf60..9141cb825d9ad96229cf145d494a4cd8e38b13c4 100644
--- a/chrome/browser/download/download_browsertest.cc
+++ b/chrome/browser/download/download_browsertest.cc
@@ -334,7 +334,7 @@ class DownloadsFlushObserver
public:
explicit DownloadsFlushObserver(DownloadManager* download_manager)
: download_manager_(download_manager),
- waiting_for_zero_inprogress_(true) { }
+ waiting_for_zero_inprogress_(true) {}
void WaitForFlush() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
@@ -826,8 +826,8 @@ class DownloadTest : public InProcessBrowserTest {
// Get History Information.
class DownloadsHistoryDataCollector {
public:
- explicit DownloadsHistoryDataCollector(int64 download_db_handle,
- DownloadManager* manager)
+ DownloadsHistoryDataCollector(int64 download_db_handle,
+ DownloadManager* manager)
: result_valid_(false),
download_db_handle_(download_db_handle) {
HistoryService* hs =
@@ -893,8 +893,8 @@ class MockAbortExtensionInstallUI : public ExtensionInstallUI {
// installation.
class MockAutoConfirmExtensionInstallUI : public ExtensionInstallUI {
public:
- explicit MockAutoConfirmExtensionInstallUI(Profile* profile) :
- ExtensionInstallUI(profile) {}
+ explicit MockAutoConfirmExtensionInstallUI(Profile* profile)
+ : ExtensionInstallUI(profile) {}
// Proceed without confirmation prompt.
virtual void ConfirmInstall(Delegate* delegate, const Extension* extension) {
« no previous file with comments | « chrome/browser/chromeos/status/status_area_button.h ('k') | chrome/browser/extensions/extension_event_router.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698