diff options
author | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-22 21:46:27 +0000 |
---|---|---|
committer | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-22 21:46:27 +0000 |
commit | cc9ed5c8029353a971c96d60e2b60430c7439d77 (patch) | |
tree | 6fc5a41cd3bcf66c6d2599f07abaa939b4b1a2d6 /views/window/window.h | |
parent | 74c0c64228af300d578993cc7274a4968c91b39a (diff) | |
download | chromium_src-cc9ed5c8029353a971c96d60e2b60430c7439d77.zip chromium_src-cc9ed5c8029353a971c96d60e2b60430c7439d77.tar.gz chromium_src-cc9ed5c8029353a971c96d60e2b60430c7439d77.tar.bz2 |
Implements a couple of NOTIMPLEMENTEDs in window_gtk and comments on
why we're not going to implement some.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/207057
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26864 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/window/window.h')
-rw-r--r-- | views/window/window.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/views/window/window.h b/views/window/window.h index c226c84..dc7a8e3 100644 --- a/views/window/window.h +++ b/views/window/window.h @@ -73,6 +73,7 @@ class Window { // Push/PopForceHidden. virtual void HideWindow() = 0; +#if defined(OS_WIN) // Hides the window if it hasn't already been force-hidden. The force hidden // count is tracked, so calling multiple times is allowed, you just have to // be sure to call PopForceHidden the same number of times. @@ -81,6 +82,7 @@ class Window { // Decrements the force hidden count, showing the window if we have reached // the top of the stack. See PushForceHidden. virtual void PopForceHidden() = 0; +#endif // Activate the window, assuming it already exists and is visible. virtual void Activate() = 0; |