diff options
author | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-12 00:26:44 +0000 |
---|---|---|
committer | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-12 00:26:44 +0000 |
commit | d0545b7f65cfee49e1bdfc10d256886c1fd89818 (patch) | |
tree | 65b8d32b4937e379fff7f522937095bbdf9f3654 /views/examples/examples_main.h | |
parent | cdcb3bd006d0823d45187f2c7fe3c3adc0ebb031 (diff) | |
download | chromium_src-d0545b7f65cfee49e1bdfc10d256886c1fd89818.zip chromium_src-d0545b7f65cfee49e1bdfc10d256886c1fd89818.tar.gz chromium_src-d0545b7f65cfee49e1bdfc10d256886c1fd89818.tar.bz2 |
Refactoring of the TableView so it uses NativeViewControl.
At this point it does not support grouping or sorting.
Mostly refactoring things from TableView to TableView2 and NativeTableWin.
BUG=None
TEST=Unit-tests and view examples for now.
R=sky
Review URL: http://codereview.chromium.org/387021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31741 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/examples/examples_main.h')
-rw-r--r-- | views/examples/examples_main.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/views/examples/examples_main.h b/views/examples/examples_main.h index c1d4a2b7..2b8366e 100644 --- a/views/examples/examples_main.h +++ b/views/examples/examples_main.h @@ -24,7 +24,9 @@ class ExamplesMain : public views::WindowDelegate { virtual ~ExamplesMain() {} // views::WindowDelegate implementation: + virtual bool CanResize() const { return true; } virtual views::View* GetContentsView(); + virtual void WindowClosing(); // Prints a message in the status area, at the bottom of the window. void SetStatus(const std::wstring& status); |