diff options
author | gwilson@google.com <gwilson@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-29 21:34:45 +0000 |
---|---|---|
committer | gwilson@google.com <gwilson@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-29 21:34:45 +0000 |
commit | e670629f5cdb3ba4b3bded3234c81dea637bec92 (patch) | |
tree | a9b77464b842f65494ad9cbab381d86a928b5ab4 /app/win | |
parent | 5d980ff35a7aa854c4861cf10acc73208acfcf79 (diff) | |
download | chromium_src-e670629f5cdb3ba4b3bded3234c81dea637bec92.zip chromium_src-e670629f5cdb3ba4b3bded3234c81dea637bec92.tar.gz chromium_src-e670629f5cdb3ba4b3bded3234c81dea637bec92.tar.bz2 |
Changes top-level browser process name back to "Chrome_WidgetWin_" from "Chrome_WindowImpl_".
R=cpu
BUG=none
TEST=run gcapi unit test, Chrome should launch and resize properly.
Review URL: http://codereview.chromium.org/554125
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@37538 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'app/win')
-rw-r--r-- | app/win/window_impl.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/win/window_impl.cc b/app/win/window_impl.cc index b28eab5..9668f82 100644 --- a/app/win/window_impl.cc +++ b/app/win/window_impl.cc @@ -20,8 +20,10 @@ static const DWORD kWindowDefaultExStyle = 0; /////////////////////////////////////////////////////////////////////////////// // WindowImpl class tracking. +// Several external scripts rely explicitly on this base class name for +// acquiring the window handle and will break if this is modified! // static -const wchar_t* const WindowImpl::kBaseClassName = L"Chrome_WindowImpl_"; +const wchar_t* const WindowImpl::kBaseClassName = L"Chrome_WidgetWin_"; // WindowImpl class information used for registering unique windows. struct ClassInfo { |