diff options
Diffstat (limited to 'chrome/browser/process_singleton_win.cc')
-rw-r--r-- | chrome/browser/process_singleton_win.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/process_singleton_win.cc b/chrome/browser/process_singleton_win.cc index 47e28dd..87c9966 100644 --- a/chrome/browser/process_singleton_win.cc +++ b/chrome/browser/process_singleton_win.cc @@ -5,7 +5,6 @@ #include "chrome/browser/process_singleton.h" #include "app/l10n_util.h" -#include "app/win/hwnd_util.h" #include "base/base_paths.h" #include "base/command_line.h" #include "base/file_path.h" @@ -25,6 +24,7 @@ #include "chrome/common/result_codes.h" #include "grit/chromium_strings.h" #include "grit/generated_resources.h" +#include "ui/base/win/hwnd_util.h" namespace { @@ -195,7 +195,7 @@ bool ProcessSingleton::Create() { 0, 0, 0, 0, 0, HWND_MESSAGE, 0, hinst, 0); DCHECK(window_); - app::win::SetWindowUserData(window_, this); + ui::SetWindowUserData(window_, this); return true; } |