diff options
author | jennb@chromium.org <jennb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-03 17:26:08 +0000 |
---|---|---|
committer | jennb@chromium.org <jennb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-03 17:26:08 +0000 |
commit | 7554abfc973de05c1d9c35c07eb04cd250c32666 (patch) | |
tree | 8707ebdb7e026b4cf763769a6a9bea1e7f3c2577 /chrome/browser/ui/panels/panel.h | |
parent | d94d9f65ce47f00e4fcd292661b11df5159536db (diff) | |
download | chromium_src-7554abfc973de05c1d9c35c07eb04cd250c32666.zip chromium_src-7554abfc973de05c1d9c35c07eb04cd250c32666.tar.gz chromium_src-7554abfc973de05c1d9c35c07eb04cd250c32666.tar.bz2 |
Clean up closing_ debugging variable.
BUG=None
TEST=Existing tests should still pass.
Review URL: http://codereview.chromium.org/7024008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@87801 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/panels/panel.h')
-rw-r--r-- | chrome/browser/ui/panels/panel.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/chrome/browser/ui/panels/panel.h b/chrome/browser/ui/panels/panel.h index 676d081..7c91724 100644 --- a/chrome/browser/ui/panels/panel.h +++ b/chrome/browser/ui/panels/panel.h @@ -141,10 +141,6 @@ class Panel : public BrowserWindow { BrowserWindow* browser_window() { return browser_window_.get(); } #endif -#ifndef NDEBUG - bool closing() const { return closing_; } -#endif - protected: virtual void DestroyBrowser() OVERRIDE; @@ -170,13 +166,6 @@ class Panel : public BrowserWindow { // The bounds when the panel is minimized. gfx::Rect minimized_bounds_; - // Is the panel being closed? This is used by the platform specific - // BrowserWindow implementation to ensure its Close() method is only invoked - // from Panel::Close(). -#ifndef NDEBUG - bool closing_; -#endif - // Is the panel minimized? bool minimized_; |