| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/chrome_process_singleton.h" | 5 #include "chrome/browser/chrome_process_singleton.h" |
| 6 | 6 |
| 7 ChromeProcessSingleton::ChromeProcessSingleton( | 7 ChromeProcessSingleton::ChromeProcessSingleton( |
| 8 const base::FilePath& user_data_dir, | 8 const base::FilePath& user_data_dir, |
| 9 const ProcessSingleton::NotificationCallback& notification_callback) | 9 const NotificationCallback& notification_callback) |
| 10 : startup_lock_(notification_callback), | 10 : startup_lock_(notification_callback), |
| 11 modal_dialog_lock_(startup_lock_.AsNotificationCallback()), | 11 modal_dialog_lock_(startup_lock_.AsNotificationCallback()), |
| 12 process_singleton_(user_data_dir, | 12 process_singleton_(user_data_dir, |
| 13 modal_dialog_lock_.AsNotificationCallback()) { | 13 modal_dialog_lock_.AsNotificationCallback()) { |
| 14 } | 14 } |
| 15 | 15 |
| 16 | 16 |
| 17 ChromeProcessSingleton::ChromeProcessSingleton( | 17 ChromeProcessSingleton::ChromeProcessSingleton( |
| 18 const base::FilePath& user_data_dir, | 18 const base::FilePath& user_data_dir, |
| 19 const ProcessSingleton::NotificationCallback& notification_callback, | 19 const NotificationCallback& notification_callback, |
| 20 const ProcessSingletonModalDialogLock::SetForegroundWindowHandler& | 20 const ProcessSingletonModalDialogLock::SetForegroundWindowHandler& |
| 21 set_foreground_window_handler) | 21 set_foreground_window_handler) |
| 22 : startup_lock_(notification_callback), | 22 : startup_lock_(notification_callback), |
| 23 modal_dialog_lock_(startup_lock_.AsNotificationCallback(), | 23 modal_dialog_lock_(startup_lock_.AsNotificationCallback(), |
| 24 set_foreground_window_handler), | 24 set_foreground_window_handler), |
| 25 process_singleton_(user_data_dir, | 25 process_singleton_(user_data_dir, |
| 26 modal_dialog_lock_.AsNotificationCallback()) { | 26 modal_dialog_lock_.AsNotificationCallback()) { |
| 27 } | 27 } |
| 28 | 28 |
| 29 ChromeProcessSingleton::~ChromeProcessSingleton() { | 29 ChromeProcessSingleton::~ChromeProcessSingleton() { |
| 30 } | 30 } |
| 31 | 31 |
| 32 ProcessSingleton::NotifyResult | 32 ProcessSingleton::NotifyResult |
| 33 ChromeProcessSingleton::NotifyOtherProcessOrCreate() { | 33 ChromeProcessSingleton::NotifyOtherProcessOrCreate() { |
| 34 return process_singleton_.NotifyOtherProcessOrCreate(); | 34 return process_singleton_.NotifyOtherProcessOrCreate(); |
| 35 } | 35 } |
| 36 | 36 |
| 37 void ChromeProcessSingleton::Cleanup() { | 37 void ChromeProcessSingleton::Cleanup() { |
| 38 process_singleton_.Cleanup(); | 38 process_singleton_.Cleanup(); |
| 39 } | 39 } |
| 40 | 40 |
| 41 void ChromeProcessSingleton::SetActiveModalDialog( | 41 void ChromeProcessSingleton::SetActiveModalDialog( |
| 42 gfx::NativeWindow active_dialog) { | 42 gfx::NativeWindow active_dialog) { |
| 43 modal_dialog_lock_.SetActiveModalDialog(active_dialog); | 43 modal_dialog_lock_.SetActiveModalDialog(active_dialog); |
| 44 } | 44 } |
| 45 | 45 |
| 46 void ChromeProcessSingleton::Unlock() { | 46 void ChromeProcessSingleton::Unlock() { |
| 47 startup_lock_.Unlock(); | 47 startup_lock_.Unlock(); |
| 48 } | 48 } |
| OLD | NEW |