diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-10 03:41:45 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-10 03:41:45 +0000 |
commit | 650b2d5cdcab7d2c473c00d15b9f343f3a3405bb (patch) | |
tree | 1343ea25d7d6086ac1279e1e0e32562b3b9b3477 /chrome/browser/process_singleton.h | |
parent | 6f3638708ff440a2e80662ce49acc41cdad51ecd (diff) | |
download | chromium_src-650b2d5cdcab7d2c473c00d15b9f343f3a3405bb.zip chromium_src-650b2d5cdcab7d2c473c00d15b9f343f3a3405bb.tar.gz chromium_src-650b2d5cdcab7d2c473c00d15b9f343f3a3405bb.tar.bz2 |
Merge branch 'master' into file_path_browser
version control markers
Merge branch 'master' into file_path_browser
remove version control
Fix typo
Merge branch 'master' into file_path_browser
Conflicts:
chrome/browser/intents/native_services_browsertest.cc
chrome/browser/ui/intents/native_file_picker_service.cc
Merge branch 'master' into file_path_browser
Conflicts:
chrome/browser/chromeos/drive/drive_file_system.cc
chrome/browser/chromeos/drive/drive_file_system.h
chrome/browser/chromeos/drive/drive_file_system_interface.h
chrome/browser/chromeos/drive/drive_file_system_unittest.cc
chrome/browser/chromeos/drive/file_system/drive_operations.cc
chrome/browser/chromeos/login/wallpaper_manager.cc
chrome/browser/chromeos/login/wallpaper_manager.h
chrome/browser/chromeos/login/wallpaper_manager_browsertest.cc
chrome/browser/extensions/api/sync_file_system/extension_sync_event_observer.cc
chrome/browser/google_apis/gdata_wapi_operations.cc
chrome/browser/google_apis/gdata_wapi_operations.h
chrome/browser/google_apis/gdata_wapi_operations_unittest.cc
chrome/browser/profiles/off_the_record_profile_impl.cc
chrome/browser/profiles/off_the_record_profile_impl.h
chrome/browser/profiles/profile_impl.cc
chrome/browser/profiles/profile_impl.h
chrome/browser/profiles/profile_impl_io_data.cc
chrome/browser/profiles/profile_impl_io_data.h
chrome/browser/sync_file_system/drive_file_sync_client_unittest.cc
chrome/browser/ui/webui/options/manage_profile_handler.cc
Long lines
long lines
some long lines.
long lines
long lines
Beginning of lines.
Rename FilePath -> base::FilePath in chrome/browser
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181638 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/process_singleton.h')
-rw-r--r-- | chrome/browser/process_singleton.h | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/chrome/browser/process_singleton.h b/chrome/browser/process_singleton.h index be19e04..12ed1ab 100644 --- a/chrome/browser/process_singleton.h +++ b/chrome/browser/process_singleton.h @@ -56,11 +56,11 @@ class ProcessSingleton : public base::NonThreadSafe { // Chrome process was launched. Return true if the command line will be // handled within the current browser instance or false if the remote process // should handle it (i.e., because the current process is shutting down). - typedef base::Callback< - bool(const CommandLine& command_line, const FilePath& current_directory)> - NotificationCallback; + typedef base::Callback<bool( + const CommandLine& command_line, + const base::FilePath& current_directory)> NotificationCallback; - explicit ProcessSingleton(const FilePath& user_data_dir); + explicit ProcessSingleton(const base::FilePath& user_data_dir); ~ProcessSingleton(); // Notify another process, if available. Otherwise sets ourselves as the @@ -130,7 +130,7 @@ class ProcessSingleton : public base::NonThreadSafe { // this timeout to be short. NotifyResult NotifyOtherProcessWithTimeout(const CommandLine& command_line, int timeout_seconds, - bool kill_unresponsive); + bool kill_unresponsive); NotifyResult NotifyOtherProcessWithTimeoutOrCreate( const CommandLine& command_line, const NotificationCallback& notification_callback, @@ -141,7 +141,8 @@ class ProcessSingleton : public base::NonThreadSafe { #endif // defined(OS_LINUX) || defined(OS_OPENBSD) private: - typedef std::pair<CommandLine::StringVector, FilePath> DelayedStartupMessage; + typedef std::pair<CommandLine::StringVector, + base::FilePath> DelayedStartupMessage; #if !defined(OS_MACOSX) // Timeout for the current browser process to respond. 20 seconds should be @@ -157,13 +158,13 @@ class ProcessSingleton : public base::NonThreadSafe { // This ugly behemoth handles startup commands sent from another process. LRESULT OnCopyData(HWND hwnd, const COPYDATASTRUCT* cds); - bool EscapeVirtualization(const FilePath& user_data_dir); + bool EscapeVirtualization(const base::FilePath& user_data_dir); HWND remote_window_; // The HWND_MESSAGE of another browser. HWND window_; // The HWND_MESSAGE window. bool is_virtualized_; // Stuck inside Microsoft Softricity VM environment. HANDLE lock_file_; - FilePath user_data_dir_; + base::FilePath user_data_dir_; #elif defined(OS_LINUX) || defined(OS_OPENBSD) // Return true if the given pid is one of our child processes. // Assumes that the current pid is the root of all pids of the current @@ -188,13 +189,13 @@ class ProcessSingleton : public base::NonThreadSafe { base::Callback<void(int)> kill_callback_; // Path in file system to the socket. - FilePath socket_path_; + base::FilePath socket_path_; // Path in file system to the lock. - FilePath lock_path_; + base::FilePath lock_path_; // Path in file system to the cookie file. - FilePath cookie_path_; + base::FilePath cookie_path_; // Temporary directory to hold the socket. base::ScopedTempDir socket_dir_; @@ -205,7 +206,7 @@ class ProcessSingleton : public base::NonThreadSafe { scoped_refptr<LinuxWatcher> watcher_; #elif defined(OS_MACOSX) // Path in file system to the lock. - FilePath lock_path_; + base::FilePath lock_path_; // File descriptor associated with the lockfile, valid between // |Create()| and |Cleanup()|. Two instances cannot have a lock on |