diff options
Diffstat (limited to 'chrome/browser/process_singleton.h')
-rw-r--r-- | chrome/browser/process_singleton.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/process_singleton.h b/chrome/browser/process_singleton.h index 250d96bd..9418c60 100644 --- a/chrome/browser/process_singleton.h +++ b/chrome/browser/process_singleton.h @@ -14,8 +14,8 @@ #include "base/basictypes.h" #include "base/logging.h" -#include "base/non_thread_safe.h" #include "base/ref_counted.h" +#include "base/threading/non_thread_safe.h" #include "gfx/native_widget_types.h" #if defined(OS_POSIX) @@ -40,7 +40,7 @@ class FilePath; // - the Windows implementation uses an invisible global message window; // - the Linux implementation uses a Unix domain socket in the user data dir. -class ProcessSingleton : public NonThreadSafe { +class ProcessSingleton : public base::NonThreadSafe { public: enum NotifyResult { PROCESS_NONE, |