diff options
Diffstat (limited to 'chrome/common/temp_scaffolding_stubs.h')
-rw-r--r-- | chrome/common/temp_scaffolding_stubs.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/chrome/common/temp_scaffolding_stubs.h b/chrome/common/temp_scaffolding_stubs.h index 607f0f3..dd5271f 100644 --- a/chrome/common/temp_scaffolding_stubs.h +++ b/chrome/common/temp_scaffolding_stubs.h @@ -479,6 +479,23 @@ namespace views { 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 //--------------------------------------------------------------------------- |