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

Unified Diff: third_party/leveldatabase/env_chromium.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 | « testing/gtest.gyp ('k') | third_party/power_gadget/PowerGadgetLib.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/leveldatabase/env_chromium.cc
diff --git a/third_party/leveldatabase/env_chromium.cc b/third_party/leveldatabase/env_chromium.cc
index ae830eb008f96b6ecf80767543598564f054d005..a8925b5df831435f8c59caf4c315504243ae487e 100644
--- a/third_party/leveldatabase/env_chromium.cc
+++ b/third_party/leveldatabase/env_chromium.cc
@@ -509,11 +509,11 @@ ChromiumEnv::ChromiumEnv()
: ChromiumEnv("LevelDBEnv", false /* make_backup */) {}
ChromiumEnv::ChromiumEnv(const std::string& name, bool make_backup)
- : name_(name),
+ : kMaxRetryTimeMillis(1000),
+ name_(name),
make_backup_(make_backup),
bgsignal_(&mu_),
- started_bgthread_(false),
- kMaxRetryTimeMillis(1000) {
+ started_bgthread_(false) {
uma_ioerror_base_name_ = name_ + ".IOError.BFE";
}
« no previous file with comments | « testing/gtest.gyp ('k') | third_party/power_gadget/PowerGadgetLib.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698