diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-10 18:07:51 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-10 18:07:51 +0000 |
commit | e6771600ddcb67a80854ff8c268d599b267236f3 (patch) | |
tree | 2fad16a58fc37177f9b6eeca8edb8ee545a7344a /app | |
parent | 2cdd900ff4fbd3eec06d8cce61152604be7630b5 (diff) | |
download | chromium_src-e6771600ddcb67a80854ff8c268d599b267236f3.zip chromium_src-e6771600ddcb67a80854ff8c268d599b267236f3.tar.gz chromium_src-e6771600ddcb67a80854ff8c268d599b267236f3.tar.bz2 |
Remove checkbox table support, as it is unused.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/2009007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46829 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'app')
-rw-r--r-- | app/table_model.h | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/app/table_model.h b/app/table_model.h index 02d86dd..b2a07a1 100644 --- a/app/table_model.h +++ b/app/table_model.h @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -40,18 +40,6 @@ class TableModel { // no bitmap. virtual SkBitmap GetIcon(int row); - // Sets whether a particular row is checked. This is only invoked - // if the TableView was created with show_check_in_first_column true. - virtual void SetChecked(int row, bool is_checked) { - NOTREACHED(); - } - - // Returns whether a particular row is checked. This is only invoked - // if the TableView was created with show_check_in_first_column true. - virtual bool IsChecked(int row) { - return false; - } - // Returns true if the TableView has groups. Groups provide a way to visually // delineate the rows in a table view. When groups are enabled table view // shows a visual separator for each group, followed by all the rows in |