diff options
author | beng@google.com <beng@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-31 04:52:27 +0000 |
---|---|---|
committer | beng@google.com <beng@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-31 04:52:27 +0000 |
commit | 6687106894056969b5d3cfbeef6ba23bb75b46a5 (patch) | |
tree | d7cafae80fdd391d3abe84e6da1b9267f866676d | |
parent | eeaef46e6a6ae3f8e70a8afddb7b3cdc63c84863 (diff) | |
download | chromium_src-6687106894056969b5d3cfbeef6ba23bb75b46a5.zip chromium_src-6687106894056969b5d3cfbeef6ba23bb75b46a5.tar.gz chromium_src-6687106894056969b5d3cfbeef6ba23bb75b46a5.tar.bz2 |
fix bustage, not sure why this didn't break on my machine
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@169 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/views/window.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/views/window.h b/chrome/views/window.h index a941cb2..4173a27 100644 --- a/chrome/views/window.h +++ b/chrome/views/window.h @@ -244,6 +244,9 @@ class Window : public HWNDViewContainer { // Set to true if the window is in the process of closing . bool window_closed_; + // Allows CreateChromeWindow to access CustomFrameWindow's ctor. + friend class CustomFrameWindow; + DISALLOW_EVIL_CONSTRUCTORS(Window); }; |