summaryrefslogtreecommitdiffstats
path: root/chrome/common/service_process_util_win.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/service_process_util_win.cc')
-rw-r--r--chrome/common/service_process_util_win.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/chrome/common/service_process_util_win.cc b/chrome/common/service_process_util_win.cc
index a6385e2..8f1ce62 100644
--- a/chrome/common/service_process_util_win.cc
+++ b/chrome/common/service_process_util_win.cc
@@ -103,10 +103,9 @@ struct ServiceProcessState::StateData {
scoped_ptr<ServiceProcessShutdownMonitor> shutdown_monitor;
};
-bool ServiceProcessState::CreateState() {
- DCHECK(!state_);
+void ServiceProcessState::CreateState() {
+ CHECK(!state_);
state_ = new StateData;
- return true;
}
bool ServiceProcessState::TakeSingletonLock() {