diff options
author | sky@google.com <sky@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-26 17:45:36 +0000 |
---|---|---|
committer | sky@google.com <sky@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-26 17:45:36 +0000 |
commit | 588deb653812e8c77941797997e2e6750c330a93 (patch) | |
tree | 741a6cd936bd5e20478277b253ee2d62735ee4b7 /chrome/test | |
parent | e44ba4f3b82bb38597b58cae52cfdea8d449b2d2 (diff) | |
download | chromium_src-588deb653812e8c77941797997e2e6750c330a93.zip chromium_src-588deb653812e8c77941797997e2e6750c330a93.tar.gz chromium_src-588deb653812e8c77941797997e2e6750c330a93.tar.bz2 |
Adds the ability to sort TableView. Contrary to what we spoke about
the other day I ended up doing the sorting in tableview. This makes it
a heck of lot easier than having every model have to deal with it. As
part of this I removed the optional non-caching logic from TableView,
which was never used. Sadly though, this means there are coordinate
transformations.
I've only enabled sorting in the keyword editor, I have to make sure
all the other places that use TableView can deal with it. For example,
task manager can't deal with it currently as it expects the getters to
be called only once where as when sorting they may be called multiple
times.
BUG=2790
TEST=This enables sorting ONLY in the keyword editor. Make sure there
aren't any problems in adding/removing/changing entries in the
keyword editor after this.
Review URL: http://codereview.chromium.org/4276
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2631 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test')
-rw-r--r-- | chrome/test/unit/unittests.vcproj | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/chrome/test/unit/unittests.vcproj b/chrome/test/unit/unittests.vcproj index 68950ad..64e7d57 100644 --- a/chrome/test/unit/unittests.vcproj +++ b/chrome/test/unit/unittests.vcproj @@ -407,6 +407,14 @@ </File> </Filter> <Filter + Name="TestTableView" + > + <File + RelativePath="..\..\views\table_view_unittest.cc" + > + </File> + </Filter> + <Filter Name="TestAnimation" > <File |