| Index: chrome/common/temp_scaffolding_stubs.h
|
| ===================================================================
|
| --- chrome/common/temp_scaffolding_stubs.h (revision 9707)
|
| +++ chrome/common/temp_scaffolding_stubs.h (working copy)
|
| @@ -491,6 +491,23 @@
|
| class AcceleratorHandler {
|
| };
|
|
|
| +class TableModelObserver {
|
| + public:
|
| + virtual void OnModelChanged() = 0;
|
| + virtual void OnItemsChanged(int, int) = 0;
|
| + virtual void OnItemsAdded(int, int) = 0;
|
| + virtual void OnItemsRemoved(int, int) = 0;
|
| +};
|
| +
|
| +class TableModel {
|
| + public:
|
| + int CompareValues(int row1, int row2, int column_id) {
|
| + NOTIMPLEMENTED();
|
| + return 0;
|
| + }
|
| + virtual int RowCount() = 0;
|
| +};
|
| +
|
| } // namespace views
|
|
|
| //---------------------------------------------------------------------------
|
|
|