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

Unified Diff: chrome/common/service_process_util_linux.cc

Issue 968813002: Standardize struct public member variables in ServiceProcessState::StateData (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits Created 5 years, 10 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 | « no previous file | chrome/common/service_process_util_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/service_process_util_linux.cc
diff --git a/chrome/common/service_process_util_linux.cc b/chrome/common/service_process_util_linux.cc
index 0ce4927a42fbcab9a94f875d414fde45791c847c..e2bcb656985861366d085f88d79e6b66eb3f9ee3 100644
--- a/chrome/common/service_process_util_linux.cc
+++ b/chrome/common/service_process_util_linux.cc
@@ -66,8 +66,8 @@ bool CheckServiceProcessReady() {
}
bool ServiceProcessState::TakeSingletonLock() {
- state_->initializing_lock_.reset(TakeServiceInitializingLock(true));
- return state_->initializing_lock_.get();
+ state_->initializing_lock.reset(TakeServiceInitializingLock(true));
+ return state_->initializing_lock.get();
}
bool ServiceProcessState::AddToAutoRun() {
« no previous file with comments | « no previous file | chrome/common/service_process_util_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698