Bring in chrome_process_singleton but nuke the active dialog bits

This commit is contained in:
Paul Betts 2015-10-19 14:50:18 -07:00
parent 717aba9631
commit 4d5495a0a0
3 changed files with 82 additions and 0 deletions

View file

@ -0,0 +1,29 @@
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "atom/browser/atom_process_singleton.h"
AtomProcessSingleton::AtomProcessSingleton(
const base::FilePath& user_data_dir,
const ProcessSingleton::NotificationCallback& notification_callback)
: startup_lock_(notification_callback),
process_singleton_(user_data_dir,
startup_lock_.AsNotificationCallback()) {
}
AtomProcessSingleton::~AtomProcessSingleton() {
}
ProcessSingleton::NotifyResult
AtomProcessSingleton::NotifyOtherProcessOrCreate() {
return process_singleton_.NotifyOtherProcessOrCreate();
}
void AtomProcessSingleton::Cleanup() {
process_singleton_.Cleanup();
}
void AtomProcessSingleton::Unlock() {
startup_lock_.Unlock();
}

View file

@ -0,0 +1,52 @@
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ATOM_BROWSER_ATOM_PROCESS_SINGLETON_H_
#define ATOM_BROWSER_ATOM_PROCESS_SINGLETON_H_
#include "base/basictypes.h"
#include "base/files/file_path.h"
#include "atom/browser/process_singleton.h"
#include "atom/browser/process_singleton_startup_lock.h"
// Composes a basic ProcessSingleton with ProcessSingletonStartupLock
class AtomProcessSingleton {
public:
AtomProcessSingleton(
const base::FilePath& user_data_dir,
const ProcessSingleton::NotificationCallback& notification_callback);
~AtomProcessSingleton();
// Notify another process, if available. Otherwise sets ourselves as the
// singleton instance. Returns PROCESS_NONE if we became the singleton
// instance. Callers are guaranteed to either have notified an existing
// process or have grabbed the singleton (unless the profile is locked by an
// unreachable process).
ProcessSingleton::NotifyResult NotifyOtherProcessOrCreate();
// Clear any lock state during shutdown.
void Cleanup();
// Executes previously queued command-line invocations and allows future
// invocations to be executed immediately.
// This only has an effect the first time it is called.
void Unlock();
private:
// We compose these two locks with the client-supplied notification callback.
// First |modal_dialog_lock_| will discard any notifications that arrive while
// a modal dialog is active. Otherwise, it will pass the notification to
// |startup_lock_|, which will queue notifications until |Unlock()| is called.
// Notifications passing through both locks are finally delivered to our
// client.
ProcessSingletonStartupLock startup_lock_;
// The basic ProcessSingleton
ProcessSingleton process_singleton_;
DISALLOW_COPY_AND_ASSIGN(AtomProcessSingleton);
};
#endif // ATOM_BROWSER_ATOM_PROCESS_SINGLETON_H_

View file

@ -129,6 +129,7 @@
'atom/browser/atom_browser_main_parts_mac.mm',
'atom/browser/atom_browser_main_parts_posix.cc',
'atom/browser/atom_process_finder_win.cc',
'atom/browser/atom_process_singleton.cc',
'atom/browser/atom_javascript_dialog_manager.cc',
'atom/browser/atom_javascript_dialog_manager.h',
'atom/browser/atom_quota_permission_context.cc',