summaryrefslogtreecommitdiffstats
path: root/ui/base/models/table_model_observer.h
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-14 15:49:40 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-14 15:49:40 +0000
commit44cbd9e3734527f73a83f8a864be0bb5ccae0a7a (patch)
treea997fb0565558d63e0eab62b631ef984de3e9596 /ui/base/models/table_model_observer.h
parent0c1c047d641a599ffffa280ab50d564cedb3e436 (diff)
downloadchromium_src-44cbd9e3734527f73a83f8a864be0bb5ccae0a7a.zip
chromium_src-44cbd9e3734527f73a83f8a864be0bb5ccae0a7a.tar.gz
chromium_src-44cbd9e3734527f73a83f8a864be0bb5ccae0a7a.tar.bz2
Move models from app to ui/base/models
BUG=none TEST=none TBR=brettw git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71446 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/base/models/table_model_observer.h')
-rw-r--r--ui/base/models/table_model_observer.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/ui/base/models/table_model_observer.h b/ui/base/models/table_model_observer.h
new file mode 100644
index 0000000..c70e89b
--- /dev/null
+++ b/ui/base/models/table_model_observer.h
@@ -0,0 +1,33 @@
+// Copyright (c) 2011 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.
+
+#ifndef UI_BASE_MODELS_TABLE_MODEL_OBSERVER_H_
+#define UI_BASE_MODELS_TABLE_MODEL_OBSERVER_H_
+#pragma once
+
+namespace ui {
+
+// Observer for a TableModel. Anytime the model changes, it must notify its
+// observer.
+class TableModelObserver {
+ public:
+ // Invoked when the model has been completely changed.
+ virtual void OnModelChanged() = 0;
+
+ // Invoked when a range of items has changed.
+ virtual void OnItemsChanged(int start, int length) = 0;
+
+ // Invoked when new items are added.
+ virtual void OnItemsAdded(int start, int length) = 0;
+
+ // Invoked when a range of items has been removed.
+ virtual void OnItemsRemoved(int start, int length) = 0;
+
+ protected:
+ virtual ~TableModelObserver() {}
+};
+
+} // namespace ui
+
+#endif // UI_BASE_MODELS_TABLE_MODEL_OBSERVER_H_