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

Unified Diff: chrome/app/chrome_watcher_client_unittest_win.cc

Issue 1210013007: clang/win: Fix warnings to prepare for building without -Wno-reorder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clang-unsequenced
Patch Set: Created 5 years, 6 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
« no previous file with comments | « build/secondary/testing/gtest/BUILD.gn ('k') | chrome/browser/chrome_select_file_dialog_factory_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/chrome_watcher_client_unittest_win.cc
diff --git a/chrome/app/chrome_watcher_client_unittest_win.cc b/chrome/app/chrome_watcher_client_unittest_win.cc
index 9f371235c96b08331ff1062f84eb74d760b87c14..04db75cb477997ce8ab3455a48037d65a5ef9625 100644
--- a/chrome/app/chrome_watcher_client_unittest_win.cc
+++ b/chrome/app/chrome_watcher_client_unittest_win.cc
@@ -124,11 +124,11 @@ MULTIPROCESS_TEST_MAIN(ChromeWatcherClientTestProcess) {
class ChromeWatcherClientThread : public base::SimpleThread {
public:
ChromeWatcherClientThread()
- : client_(base::Bind(&ChromeWatcherClientThread::GenerateCommandLine,
+ : SimpleThread("ChromeWatcherClientTest thread"),
+ client_(base::Bind(&ChromeWatcherClientThread::GenerateCommandLine,
base::Unretained(this))),
complete_(false, false),
- result_(false),
- SimpleThread("ChromeWatcherClientTest thread") {}
+ result_(false) {}
// Waits up to |timeout| for the call to EnsureInitialized to complete. If it
// does, sets |result| to the return value of EnsureInitialized and returns
« no previous file with comments | « build/secondary/testing/gtest/BUILD.gn ('k') | chrome/browser/chrome_select_file_dialog_factory_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698