diff options
Diffstat (limited to 'chrome/installer/setup/uninstall.cc')
-rw-r--r-- | chrome/installer/setup/uninstall.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/installer/setup/uninstall.cc b/chrome/installer/setup/uninstall.cc index b9ca768..5052019 100644 --- a/chrome/installer/setup/uninstall.cc +++ b/chrome/installer/setup/uninstall.cc @@ -28,7 +28,7 @@ namespace { // to kill them. void CloseAllChromeProcesses() { for (int j = 0; j < 4; ++j) { - std::wstring wnd_class(L"Chrome_ContainerWin_"); + std::wstring wnd_class(L"Chrome_WidgetWin_"); wnd_class.append(IntToWString(j)); HWND window = FindWindowEx(NULL, NULL, wnd_class.c_str(), NULL); while (window) { |